diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-08-11 09:25:47 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-08-11 09:25:47 +0000 |
commit | 541587c87986ed163d8eb60040149f5fac05e6d3 (patch) | |
tree | e7806aedd1e331cbd0af9b6ffa976496d616ba0f /assert/assert-perr.c | |
parent | 67c94753e3f2ec372483cd41fbcc1bcdc04053fb (diff) | |
download | glibc-541587c87986ed163d8eb60040149f5fac05e6d3.zip glibc-541587c87986ed163d8eb60040149f5fac05e6d3.tar.gz glibc-541587c87986ed163d8eb60040149f5fac05e6d3.tar.bz2 |
Update.
* assert/assert.c (set_progname): Removed.
(__assert_fail): Use __progname instead of __assert_program_name.
* assert/assert-perr.c (__assert_perror_fail): Likewise.
Diffstat (limited to 'assert/assert-perr.c')
-rw-r--r-- | assert/assert-perr.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/assert/assert-perr.c b/assert/assert-perr.c index c13595c..436a9ce 100644 --- a/assert/assert-perr.c +++ b/assert/assert-perr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1994,1995,1996,1997,1998,2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -24,7 +24,7 @@ #include <libintl.h> -extern const char *__assert_program_name; /* In assert.c. */ +extern const char *__progname; #ifdef USE_IN_LIBIO # include <libio/iolibio.h> @@ -52,8 +52,7 @@ __assert_perror_fail (int errnum, /* Print the message. */ (void) fprintf (stderr, _("%s%s%s:%u: %s%sUnexpected error: %s.\n"), - __assert_program_name ? __assert_program_name : "", - __assert_program_name ? ": " : "", + __progname, __progname[0] ? ": " : "", file, line, function ? function : "", function ? ": " : "", __strerror_r (errnum, errbuf, sizeof errbuf)); |