* open_slave.c (pty_open_slave): If revoke() present on system but
authorEzra Peisach <epeisach@mit.edu>
Fri, 4 May 2001 18:59:20 +0000 (18:59 +0000)
committerEzra Peisach <epeisach@mit.edu>
Fri, 4 May 2001 18:59:20 +0000 (18:59 +0000)
VHANG_FIRST is not defined, declare local variable.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13231 dc483132-0cff-0310-8789-dd5450dbe970

src/util/pty/ChangeLog
src/util/pty/open_slave.c

index 41e6a34562d5fab86e831b18e261134ce05bfa93..ef8e0b849d181e94eed2c5e9624c2ff2fe0a15f6 100644 (file)
@@ -1,3 +1,8 @@
+2001-05-04  Ezra Peisach  <epeisach@mit.edu>
+
+       * open_slave.c (pty_open_slave): If revoke() present on system but
+       VHANG_FIRST is not defined, declare local variable.
+
 2001-05-04  Tom Yu  <tlyu@mit.edu>
 
        * dump-utmp.c: Fix some off-by-one errors.  Handle cases where we
index 0e863d96a0697e41893924d3340b70bab2c616c7..235b8e8dafa977c46703cc1b7a43ad3542085039 100644 (file)
@@ -29,7 +29,7 @@ long pty_open_slave ( slave, fd)
     const char *slave;
     int *fd;
 {
-#ifdef VHANG_FIRST
+#if defined(VHANG_FIRST) || defined(HAVE_REVOKE)
     int vfd;
 #endif