Pass correct argument to getutmpx()
authorPaul Park <pjpark@mit.edu>
Tue, 8 Aug 1995 22:03:52 +0000 (22:03 +0000)
committerPaul Park <pjpark@mit.edu>
Tue, 8 Aug 1995 22:03:52 +0000 (22:03 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6469 dc483132-0cff-0310-8789-dd5450dbe970

src/util/pty/ChangeLog
src/util/pty/update_utmp.c

index a893b5e0665ccafc792e02c657e8318e69cafcd1..bf5a2d9499192c261f24a1624e5e967f9c82048e 100644 (file)
@@ -1,3 +1,7 @@
+
+Tue Aug 8 17:24:27 EDT 1995    Paul Park       (pjpark@mit.edu)
+       * update_utmp.c - getutmpx() requires address of utmpx structure.
+
 Mon Aug  7 17:41:39 1995  Sam Hartman  <hartmans@tertius.mit.edu>
 
        * cleanup.c (pty_cleanup): Call pty_update_utmp using new interface.
index b80d075ebfffdc47b9715eba9a84b9a5b8e3047c..30b317067764b11923b66bb6925aef6d6ee3b405 100644 (file)
@@ -114,7 +114,7 @@ long pty_update_utmp (process_type, pid, username, line, host)
     
 #ifdef HAVE_SETUTXENT
     setutxent();
-    getutmpx(ent, &utx);
+    getutmpx(&ent, &utx);
     pututxline(&utx);
     endutxent();
 #endif /* HAVE_SETUTXENT */