Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 18 Apr 2000 19:58:03 +0000 (19:58 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 18 Apr 2000 19:58:03 +0000 (19:58 +0000)
* sysdeps/generic/updwtmp.c: Remove daemon support.

ChangeLog
sysdeps/generic/updwtmp.c

index a49a4c9..92f0f8d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2000-04-18  Ulrich Drepper  <drepper@redhat.com>
 
+       * sysdeps/generic/updwtmp.c: Remove daemon support.
+
        * login/Makefile (routines): Remove utmp_daemon.
 
        * sysdeps/unix/sysv/aix/gethostname.c: Fix type of len argument.
index d6f29b1..5ab7ce6 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Mark Kettenis <kettenis@phys.uva.nl>, 1997.
 
 void
 __updwtmp (const char *wtmp_file, const struct utmp *utmp)
 {
-  /* See whether utmpd is running.  */
-  if ((*__libc_utmp_daemon_functions.updwtmp) (wtmp_file, utmp) < 0)
-    {
-      const char *file_name;
+  file_name = TRANSFORM_UTMP_FILE_NAME (wtmp_file);
 
-      file_name = TRANSFORM_UTMP_FILE_NAME (wtmp_file);
-
-      (*__libc_utmp_file_functions.updwtmp) (file_name, utmp);
-    }
+  (*__libc_utmp_file_functions.updwtmp) (file_name, utmp);
 }
 weak_alias (__updwtmp, updwtmp)