aboutsummaryrefslogtreecommitdiff
path: root/archival
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-12-02 00:01:36 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2002-12-02 00:01:36 +0000
commitb963875a3e7c57f7cce58205f15bbf426b796927 (patch)
tree83ddadefc0a5fdf0d4722217fe4d2c9f04fc6049 /archival
parentf112daa232122dd114933d04a9e415cfc61f1717 (diff)
downloadbusybox-b963875a3e7c57f7cce58205f15bbf426b796927.tar.gz
Move compare_string_array to libbb
Diffstat (limited to 'archival')
-rw-r--r--archival/dpkg.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c
index 23509fcb5..274d711dc 100644
--- a/archival/dpkg.c
+++ b/archival/dpkg.c
@@ -498,19 +498,6 @@ void free_package(common_node_t *node)
}
}
-/* returns the array number of the string */
-static unsigned short compare_string_array(const char *string_array[], const char *key)
-{
- unsigned short i;
-
- for (i = 0; string_array[i] != 0; i++) {
- if (strcmp(string_array[i], key) == 0) {
- break;
- }
- }
- return(i);
-}
-
unsigned int fill_package_struct(char *control_buffer)
{
common_node_t *new_node = (common_node_t *) xcalloc(1, sizeof(common_node_t));