summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbishakhabanerjee%netscape.com <devnull@localhost>2002-07-30 18:36:50 +0000
committerbishakhabanerjee%netscape.com <devnull@localhost>2002-07-30 18:36:50 +0000
commit551b0fd09e1d495bac1c8e37da3bae2cdc39156c (patch)
tree6045abe32d5150a26bf584da141d436f6412283d
parent3f9ee0a454b7fe226f5df2ac94ec1076febb2325 (diff)
downloadnss-hg-551b0fd09e1d495bac1c8e37da3bae2cdc39156c.tar.gz
Checking in riceman+bmo@mail.rit.edu's patch for bug 133702
-rw-r--r--security/coreconf/nsinstall/pathsub.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/security/coreconf/nsinstall/pathsub.c b/security/coreconf/nsinstall/pathsub.c
index d13c541d0..9266b48c7 100644
--- a/security/coreconf/nsinstall/pathsub.c
+++ b/security/coreconf/nsinstall/pathsub.c
@@ -69,7 +69,7 @@ fail(char *format, ...)
va_start(ap, format);
vfprintf(stderr, format, ap);
va_end(ap);
- if (error)
+ if (error) {
#ifdef USE_REENTRANT_LIBC
R_STRERROR_R(errno);
@@ -77,7 +77,8 @@ fail(char *format, ...)
#else
fprintf(stderr, ": %s", strerror(errno));
#endif
-
+ }
+
putc('\n', stderr);
abort();
exit(1);