diff options
author | Rob Landley | 2006-02-22 17:01:00 +0000 |
---|---|---|
committer | Rob Landley | 2006-02-22 17:01:00 +0000 |
commit | 0a7c8ef6e220b5f8fff4f2cb0af630255a2a6a58 (patch) | |
tree | f32eb89325299a3abade721ffe149b0e516747c1 /archival/dpkg.c | |
parent | fb16d5c6aa8aef30d313356b5a83ef0a60114c9a (diff) | |
download | busybox-0a7c8ef6e220b5f8fff4f2cb0af630255a2a6a58.zip busybox-0a7c8ef6e220b5f8fff4f2cb0af630255a2a6a58.tar.gz |
Patch from Denis Vlasenko to constify things and fix a few typos.
Diffstat (limited to 'archival/dpkg.c')
-rw-r--r-- | archival/dpkg.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c index 7ed17d7..70eaefb 100644 --- a/archival/dpkg.c +++ b/archival/dpkg.c @@ -552,9 +552,12 @@ static void free_package(common_node_t *node) static unsigned int fill_package_struct(char *control_buffer) { + static const char *const field_names[] = { "Package", "Version", + "Pre-Depends", "Depends","Replaces", "Provides", + "Conflicts", "Suggests", "Recommends", "Enhances", 0 + }; + common_node_t *new_node = (common_node_t *) xcalloc(1, sizeof(common_node_t)); - const char *field_names[] = { "Package", "Version", "Pre-Depends", "Depends", - "Replaces", "Provides", "Conflicts", "Suggests", "Recommends", "Enhances", 0}; char *field_name; char *field_value; int field_start = 0; |