* update_utmp.c (pty_update_utmp): Fix typo (OWRONLY -> O_WRONLY)
authorKen Raeburn <raeburn@mit.edu>
Wed, 2 May 2001 02:28:23 +0000 (02:28 +0000)
committerKen Raeburn <raeburn@mit.edu>
Wed, 2 May 2001 02:28:23 +0000 (02:28 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13226 dc483132-0cff-0310-8789-dd5450dbe970

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

index da11c08e319dcc414baa6c5419e98a4e05d87507..90a0a1ef49112124a5e01e8fcf527912fd496ab6 100644 (file)
@@ -1,3 +1,8 @@
+2001-05-01  Ken Raeburn  <raeburn@mit.edu>
+
+       * update_utmp.c (pty_update_utmp): Fix typo (OWRONLY ->
+       O_WRONLY).
+
 2001-05-01  Ezra Peisach  <epeisach@mit.edu>
 
        * update_wtmp.c (ptyint_update_wtmpx): Add missing semi-colon in
index fc5edfd72c59c5a0e769f1e3451f5ed591e80600..976febe1a7e3dbd5e97658f5c358426476111118 100644 (file)
@@ -593,7 +593,7 @@ pty_update_utmp(int process_type, int pid, const char *username,
        close(fd);
     }
     if (tty > 0) {
-       fd = open(UTMP_FILE, OWRONLY);
+       fd = open(UTMP_FILE, O_WRONLY);
        if (fd == -1)
            return 0;
        if (fstat(fd, &statb)) {