Fix opt type in dpkg (closes: #118975).

This commit is contained in:
Matt Kraai 2001-11-19 21:07:15 +00:00
parent 4e05da89f3
commit efd7f03657
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@
-- Fix tar segfault when include list is empty and exclude list is -- Fix tar segfault when include list is empty and exclude list is
not. not.
-- Fix sed s/$/@/ handling (noted by Joshua Hudson). -- Fix sed s/$/@/ handling (noted by Joshua Hudson).
-- Fix opt type in dpkg (closes: #118975).
* Magick * Magick
-- made init run inittab command's in the order they show up -- made init run inittab command's in the order they show up
in the inittab file (FIFO instead of LIFO). in the inittab file (FIFO instead of LIFO).

View File

@ -1332,7 +1332,7 @@ extern int dpkg_main(int argc, char **argv)
{ {
deb_file_t **deb_file = NULL; deb_file_t **deb_file = NULL;
status_node_t *status_node; status_node_t *status_node;
char opt = 0; int opt;
int package_num; int package_num;
int dpkg_opt = 0; int dpkg_opt = 0;
int deb_count = 0; int deb_count = 0;