aboutsummaryrefslogtreecommitdiff
path: root/archival/dpkg.c
diff options
context:
space:
mode:
Diffstat (limited to 'archival/dpkg.c')
-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));