mirror of git://sourceware.org/git/glibc.git
[BZ #2764]
2006-08-13 Ulrich Drepper <drepper@redhat.com> [BZ #2764] * login/utmpname.c (__utmpname): Remove unnecessary test.
This commit is contained in:
parent
022b51af62
commit
fa3ac53fd9
|
@ -1,3 +1,8 @@
|
||||||
|
2006-08-13 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
[BZ #2764]
|
||||||
|
* login/utmpname.c (__utmpname): Remove unnecessary test.
|
||||||
|
|
||||||
2006-06-08 Joseph Myers <jsm28@gcc.gnu.org>
|
2006-06-08 Joseph Myers <jsm28@gcc.gnu.org>
|
||||||
|
|
||||||
[BZ #2832]
|
[BZ #2832]
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1997, 2002 Free Software Foundation, Inc.
|
/* Copyright (C) 1997, 2002, 2006 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Mark Kettenis <kettenis@phys.uva.nl>, 1997.
|
Contributed by Mark Kettenis <kettenis@phys.uva.nl>, 1997.
|
||||||
|
|
||||||
|
@ -50,7 +50,6 @@ __utmpname (const char *file)
|
||||||
{
|
{
|
||||||
if (strcmp (file, default_file_name) == 0)
|
if (strcmp (file, default_file_name) == 0)
|
||||||
{
|
{
|
||||||
if (__libc_utmp_file_name != default_file_name)
|
|
||||||
free ((char *) __libc_utmp_file_name);
|
free ((char *) __libc_utmp_file_name);
|
||||||
|
|
||||||
__libc_utmp_file_name = default_file_name;
|
__libc_utmp_file_name = default_file_name;
|
||||||
|
|
Loading…
Reference in New Issue