diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-05 17:07:01 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-05 17:07:01 +0000 |
commit | fa5f20755ce255c991b4852446de72c213f2b02e (patch) | |
tree | 1053a49c889a86d44905c29b1294f67bc23ca73e | |
parent | 746204b1b8ee1948ca91637eeb34043e5e4f0aad (diff) | |
download | busybox-w32-fa5f20755ce255c991b4852446de72c213f2b02e.tar.gz busybox-w32-fa5f20755ce255c991b4852446de72c213f2b02e.tar.bz2 busybox-w32-fa5f20755ce255c991b4852446de72c213f2b02e.zip |
- fix typo in error message. Closes #1308
-rw-r--r-- | archival/dpkg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c index dcbd0d162..0ab54c30e 100644 --- a/archival/dpkg.c +++ b/archival/dpkg.c | |||
@@ -1550,7 +1550,7 @@ static void configure_package(deb_file_t *deb_file) | |||
1550 | /* Run the postinst script */ | 1550 | /* Run the postinst script */ |
1551 | if (run_package_script(package_name, "postinst") != 0) { | 1551 | if (run_package_script(package_name, "postinst") != 0) { |
1552 | /* TODO: handle failure gracefully */ | 1552 | /* TODO: handle failure gracefully */ |
1553 | bb_error_msg_and_die("postrm failure.. set status to what?"); | 1553 | bb_error_msg_and_die("postinst failure.. set status to what?"); |
1554 | } | 1554 | } |
1555 | /* Change status to reflect success */ | 1555 | /* Change status to reflect success */ |
1556 | set_status(status_num, "install", 1); | 1556 | set_status(status_num, "install", 1); |