Changeset 4204 for trunk/src/target/opkg/libopkg/opkg_conf.c
- Timestamp:
- 03/13/08 16:38:39 (5 years ago)
- File:
-
- 1 edited
-
trunk/src/target/opkg/libopkg/opkg_conf.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/target/opkg/libopkg/opkg_conf.c
r4085 r4204 552 552 opkg_conf_set_option(options, name, value); 553 553 } else if (strcmp(type, "src") == 0) { 554 if (!nv_pair_list_find( pkg_src_list, name)) {554 if (!nv_pair_list_find((nv_pair_list_t*) pkg_src_list, name)) { 555 555 pkg_src_list_append (pkg_src_list, name, value, extra, 0); 556 556 } else { … … 559 559 } 560 560 } else if (strcmp(type, "src/gz") == 0) { 561 if (!nv_pair_list_find( pkg_src_list, name)) {561 if (!nv_pair_list_find((nv_pair_list_t*) pkg_src_list, name)) { 562 562 pkg_src_list_append (pkg_src_list, name, value, extra, 1); 563 563 } else {
Note: See TracChangeset
for help on using the changeset viewer.
