Fix typo
authorSam Hartman <hartmans@mit.edu>
Mon, 23 Oct 1995 17:32:07 +0000 (17:32 +0000)
committerSam Hartman <hartmans@mit.edu>
Mon, 23 Oct 1995 17:32:07 +0000 (17:32 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6982 dc483132-0cff-0310-8789-dd5450dbe970

src/util/pty/ChangeLog
src/util/pty/update_wtmp.c

index a456b444f4e6efda2cf10b51c92ccadfec744ab6..e762477dbc47302199398a0650cfbf69f18d3312 100644 (file)
@@ -1,3 +1,11 @@
+Sun Oct 22 03:48:37 1995  Sam Hartman  <hartmans@tertius.mit.edu>
+
+       * update_wtmp.c (ptyint_update_wtmp): Add comments explaining why ifdefs are right.
+
+Sun Oct 22 01:20:52 1995  Sam Hartman  <hartmans@infocalypse>
+
+       * update_wtmp.c (ptyint_update_wtmp): Try utx not uts.
+
 Mon Oct 16 17:41:45 1995  Sam Hartman  <hartmans@tertius.mit.edu>
 
 
index de264db66a5886569bc302ccc6beef638d6059cd..e5a4d3c86c62fd7b40d20136401b694a7261f348 100644 (file)
@@ -42,12 +42,13 @@ long ptyint_update_wtmp (ent , host)
     getutmpx(ent, &utx);
 if (host)
     strncpy(utx.ut_host, host, sizeof(utx.ut_host) );
-    else uts.ut_host[0] = 0;
+    else utx.ut_host[0] = 0;
     updwtmpx(WTMPX_FILE, &utx);
 #endif
 
 #ifdef HAVE_UPDWTMP
 #ifndef HAVE_SETUTXENT
+/* This is already performed byupdwtmpx if present.*/
     updwtmp(WTMP_FILE, ent);
 #endif /* HAVE_SETUTXENT*/
 #else /* HAVE_UPDWTMP */