From a6f3b7c6e70d10338ba21ea0aba9296f228ab709 Mon Sep 17 00:00:00 2001 From: Unknown User d91-jda Date: Wed, 1 May 1996 15:22:18 +0000 Subject: [PATCH] Removed references to __progname. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@453 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/roken/verr.c | 2 ++ lib/roken/verrx.c | 2 ++ lib/roken/vwarn.c | 2 ++ lib/roken/vwarnx.c | 2 ++ 4 files changed, 8 insertions(+) diff --git a/lib/roken/verr.c b/lib/roken/verr.c index 04fa0a37a..3c7348d8c 100644 --- a/lib/roken/verr.c +++ b/lib/roken/verr.c @@ -12,7 +12,9 @@ verr(int eval, const char *fmt, va_list ap) int sverrno; sverrno = errno; +#if 0 fprintf(stderr, "%s: ", __progname); +#endif if (fmt != NULL) { vfprintf(stderr, fmt, ap); fprintf(stderr, ": "); diff --git a/lib/roken/verrx.c b/lib/roken/verrx.c index 001d25336..493acb63e 100644 --- a/lib/roken/verrx.c +++ b/lib/roken/verrx.c @@ -9,7 +9,9 @@ RCSID("$Id$"); void verrx(int eval, const char *fmt, va_list ap) { +#if 0 fprintf(stderr, "%s: ", __progname); +#endif if (fmt != NULL) vfprintf(stderr, fmt, ap); fprintf(stderr, "\n"); diff --git a/lib/roken/vwarn.c b/lib/roken/vwarn.c index f2effc3ee..ebef09006 100644 --- a/lib/roken/vwarn.c +++ b/lib/roken/vwarn.c @@ -12,7 +12,9 @@ vwarn(const char *fmt, va_list ap) int sverrno; sverrno = errno; +#if 0 fprintf(stderr, "%s: ", __progname); +#endif if (fmt != NULL) { vfprintf(stderr, fmt, ap); fprintf(stderr, ": "); diff --git a/lib/roken/vwarnx.c b/lib/roken/vwarnx.c index 9e58676de..6d1a452f8 100644 --- a/lib/roken/vwarnx.c +++ b/lib/roken/vwarnx.c @@ -9,7 +9,9 @@ RCSID("$Id$"); void vwarnx(const char *fmt, va_list ap) { +#if 0 fprintf(stderr, "%s: ", __progname); +#endif if (fmt != NULL) vfprintf(stderr, fmt, ap); fprintf(stderr, "\n");