aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/compat_err.c
diff options
context:
space:
mode:
Diffstat (limited to 'compat_err.c')
-rw-r--r--compat_err.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/compat_err.c b/compat_err.c
index 5107c460..3a5bac03 100644
--- a/compat_err.c
+++ b/compat_err.c
@@ -6,7 +6,7 @@ int dummy;
#else
-/* $Id: compat_err.c,v 1.1 2015/10/11 21:12:54 schwarze Exp $ */
+/* $Id: compat_err.c,v 1.2 2015/11/06 16:30:33 schwarze Exp $ */
/*
* Copyright (c) 1993
* The Regents of the University of California. All rights reserved.
@@ -43,15 +43,13 @@ int dummy;
#include <stdlib.h>
#include <string.h>
-extern char *__progname;
-
static void vwarni(const char *, va_list);
static void vwarnxi(const char *, va_list);
static void
vwarnxi(const char *fmt, va_list ap)
{
- fprintf(stderr, "%s: ", __progname);
+ fprintf(stderr, "%s: ", getprogname());
if (fmt != NULL)
vfprintf(stderr, fmt, ap);
}