Removed references to __progname.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@453 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Unknown User d91-jda
1996-05-01 15:22:18 +00:00
parent a0b17d083b
commit a6f3b7c6e7
4 changed files with 8 additions and 0 deletions

View File

@@ -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, ": ");

View File

@@ -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");

View File

@@ -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, ": ");

View File

@@ -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");