minor hp fix
authorMark Eichin <eichin@mit.edu>
Wed, 13 Mar 1996 20:06:46 +0000 (20:06 +0000)
committerMark Eichin <eichin@mit.edu>
Wed, 13 Mar 1996 20:06:46 +0000 (20:06 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7623 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/popper/ChangeLog
src/appl/popper/pop_pass.c

index bd9885fd068794d4dd817a6df17e601d8558065e..0d4e6d5d333474888515bf792ae3866076aaaad2 100644 (file)
@@ -1,3 +1,8 @@
+Tue Jan  2 19:23:52 1996  Mark Eichin  <eichin@cygnus.com>
+
+       * pop_pass.c (our_getpwnam): the code here is unused and probably
+       wrong, but the hpux case should at least check __hpux as well.
+
 Sat Jul 29 04:38:30 1995  Tom Yu  <tlyu@dragons-lair.MIT.EDU>
 
        * configure.in: Don't link with -lkadm.
index b4db2deae9c35776b3812f5690ee0e14b1ba4e34..30f6b6db93a33fb5662a80eba76bb7d796bc722c 100644 (file)
@@ -233,7 +233,7 @@ our_getpwnam(user)
       
       p.pw_name = strdup(buf);
 
-#ifdef hpux
+#if defined(hpux) || defined(__hpux)
       if (!(d = (char *) strchr(c, ':')))
          return(&p);
 #else