search for: shut_xxxx

Displaying 3 results from an estimated 3 matches for "shut_xxxx".

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
1999 Nov 23
2
Fixes for Solaris
...iff -u -r1.16 -r1.17 --- acconfig.h 1999/11/22 03:27:24 1.16 +++ acconfig.h 1999/11/23 00:24:32 1.17 @@ -68,17 +68,25 @@ /* ******************* Shouldn't need to edit below this line ************** */ -# include <sys/types.h> /* For u_intXX_t */ -# include <sys/socket.h> /* For SHUT_XXXX */ +#include <sys/types.h> /* For u_intXX_t */ +#include <sys/socket.h> /* For SHUT_XXXX */ #ifdef HAVE_PATHS_H # include <paths.h> /* For _PATH_XXX */ #endif +#ifdef HAVE_UTMP_H +# include <utmp.h> /* For _PATH_XXX */ +#endif + #ifdef HAVE_SYS_TIME_H # include &l...
1999 Dec 21
0
Problem with UTMP recording
...socket library (-lsocket). */ /* #undef HAVE_LIBSOCKET */ /* Define if you have the z library (-lz). */ #define HAVE_LIBZ 1 /* ******************* Shouldn't need to edit below this line ************** */ #include <sys/types.h> /* For u_intXX_t */ #include <sys/socket.h> /* For SHUT_XXXX */ #ifdef HAVE_PATHS_H # include <paths.h> /* For _PATH_XXX */ #endif #ifdef HAVE_UTMP_H # include <utmp.h> /* For _PATH_XXX */ #endif #ifdef HAVE_UTMPX_H # include <utmpx.h> /* For _PATH_XXX */ #endif #ifdef HAVE_SYS_TIME_H # include <sys/time.h> /* For timersub */ #...