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 /archival | |
parent | 746204b1b8ee1948ca91637eeb34043e5e4f0aad (diff) | |
download | busybox-fa5f20755ce255c991b4852446de72c213f2b02e.tar.gz |
- fix typo in error message. Closes #1308
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) /* Run the postinst script */ if (run_package_script(package_name, "postinst") != 0) { /* TODO: handle failure gracefully */ - bb_error_msg_and_die("postrm failure.. set status to what?"); + bb_error_msg_and_die("postinst failure.. set status to what?"); } /* Change status to reflect success */ set_status(status_num, "install", 1); |