small fixes atop syslog config patch
[oweals/busybox.git] / libbb / herror_msg.c
index 1e6908d8202dac1bbac3859e38b9642cc1544e8e..d041076e00001385bb04cc06a1a1693812faf9b7 100644 (file)
@@ -4,19 +4,25 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+#include "libbb.h"
 
-#include <stdarg.h>
-#include <stdlib.h>
+void FAST_FUNC bb_herror_msg(const char *s, ...)
+{
+       va_list p;
 
-#include "libbb.h"
+       va_start(p, s);
+       bb_verror_msg(s, p, hstrerror(h_errno));
+       va_end(p);
+}
 
-void bb_herror_msg(const char *s, ...)
+void FAST_FUNC bb_herror_msg_and_die(const char *s, ...)
 {
        va_list p;
 
        va_start(p, s);
-       bb_vherror_msg(s, p);
+       bb_verror_msg(s, p, hstrerror(h_errno));
        va_end(p);
+       xfunc_die();
 }