X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libbb%2Fvperror_msg.c;h=c3f79c23b45f2657a7f820e04364e76d34baeef6;hb=becd8c538cc689460dca83ecc92222969059c5f4;hp=5a854ec4ae403c36aa93c796b18896c0d3f598fb;hpb=b1629b1b2abc17a6430e4173d64d7956784118e0;p=oweals%2Fbusybox.git diff --git a/libbb/vperror_msg.c b/libbb/vperror_msg.c index 5a854ec4a..c3f79c23b 100644 --- a/libbb/vperror_msg.c +++ b/libbb/vperror_msg.c @@ -7,17 +7,9 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -#include -#include -#include -#include #include "libbb.h" void bb_vperror_msg(const char *s, va_list p) { - int err=errno; - if(s == 0) s = ""; - bb_verror_msg(s, p); - if (*s) s = ": "; - fprintf(stderr, "%s%s\n", s, strerror(err)); + bb_verror_msg(s, p, strerror(errno)); }