Vanilla List Maling List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [VANILLA-LIST:2271] just commited some changes



Thanks, Dave, for the new stats. :)

"cvs update" pointed out a few problems, which I'm repeating blindly.

-dave


getname.c	<crypt.h> doesn't exist on my RedHat 4.2
		system.  Use <unistd.h> or an explicit prototype.
		char *crypt(const char* key, const char* salt);

newstartd.c
update.c	sa_sigaction isn't a part of struct sigaction on
		linux.  (It probably corresponds to the linux
		field sa_restorer.)  When I tried compiling a version
		of update.c which uses sa_sigaction on redhat 4.2,
		it barfed.  Suggested fix:

		#ifdef linux
		#define sa_sigaction sa_restorer
		#endif