Displaying 2 results from an estimated 2 matches for "gotlastlog".
1999 Nov 19
1
[solaris 7 patch] resubmit and extended ...
Okay, everything as the first large one I sent today, with a few extra
mods. _PATH_MAILDIR is only used in sshd.c, that I can see, so moved the
#ifdef from config.h.in to there.
several files had __progname defined in the middle of the code, as well as
at the top of the code, so cleaned those out.
all the fixes for u_int32_t -> uint32_t and u_int16_t -> uint16_t, plus
added appropriate
2000 Jan 27
1
Long awaited round 1 of NeXT patches.
...LT(yes); ],
@@ -487,7 +501,7 @@
],
[
AC_MSG_CHECKING([location of lastlog file])
- for lastlog in /var/log/lastlog /var/adm/lastlog /etc/security/lastlog ; do
+ for lastlog in /var/log/lastlog /var/adm/lastlog /etc/security/lastlog /usr/adm/lastlog; do
if test -f $lastlog ; then
gotlastlog="file"
break
diff -ruN openssh-1.2.2/includes.h ossh-1.2.2n/includes.h
--- openssh-1.2.2/includes.h Tue Jan 18 20:45:07 2000
+++ ossh-1.2.2n/includes.h Thu Jan 27 00:42:24 2000
@@ -32,8 +32,10 @@
#include <netinet/in.h>
#include <netinet/in_systm.h>
-#include <neti...