[917] in Kerberos-V5-bugs
More bugs
daemon@ATHENA.MIT.EDU (Richard Basch)
Mon Oct 31 17:55:18 1994
Date: Mon, 31 Oct 1994 17:54:59 -0500
To: krb5-bugs@MIT.EDU
From: "Richard Basch" <basch@MIT.EDU>
1. appl/bsd
There are lots of references to "signal", "longjmp", etc. which will not
conform to SYS-V or POSIX standards.
2. appl/popper
popper.h should not redeclare MAXHOSTNAMELEN (use #ifndef ... #endif).
3. appl/mailquery/poplib.c
379: *p = NULL;
380: if (*--p == '\n') *p = NULL;
381: if (*--p == '\r') *p = NULL;
392: if (*(buf+1) == NULL) {
All of these should be cast... Actually, they should be '\0', not NULL.
-Richard