Changeset 473
- Timestamp:
- 11/22/06 14:53:53 (2 years ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/cherokee/config_node.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r470 r473 1 1 2006-11-22 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 3 * cherokee/config_node.c (cherokee_config_node_add): Fixes bug 4 #104. It was messing up the configuration tree if the entries were 5 not sorted. 2 6 3 7 * configure.in: Added new --enable-beta parameter. It allows to cherokee/trunk/cherokee/config_node.c
r443 r473 210 210 if (child == NULL) { 211 211 child = add_new_child (current, &tmp); 212 213 if (final) { 214 cherokee_buffer_add_buffer (&child->val, val); 215 } 212 if (child == NULL) return ret_error; 213 } 214 215 if (final) { 216 cherokee_buffer_add_buffer (&child->val, val); 216 217 } 217 218