diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-05 17:12:40 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-05 17:12:40 +0000 |
commit | 9cb801884ac3c84c4be8995418d2435602ac36df (patch) | |
tree | 64b5becbfb7cbc2438c36d757c0fc51c0da3ee97 /archival | |
parent | 3f22b7f7182d08d5be2ea0750d28afec0a08520d (diff) | |
download | busybox-w32-9cb801884ac3c84c4be8995418d2435602ac36df.tar.gz busybox-w32-9cb801884ac3c84c4be8995418d2435602ac36df.tar.bz2 busybox-w32-9cb801884ac3c84c4be8995418d2435602ac36df.zip |
- fix typo in error message. Closes #1308 by pulling r18746 from trunk
Diffstat (limited to 'archival')
-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); |