[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS: cvs.openbsd.org: src



CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2001/05/04 16:16:18

Modified files:
	usr.bin/sup    : Makefile.inc 
	usr.bin/sup/src: atoo.c errmsg.c expand.c ffilecopy.c filecopy.c 
	                 libc.h log.c netcryptvoid.c nxtarg.c path.c 
	                 run.c scan.c scm.c scmio.c skipto.c stree.c 
	                 sup.h supcmain.c supcmeat.c supcmisc.c 
	                 supcname.c supcparse.c supextern.h supfilesrv.c 
	                 supmsg.c supscan.c unvis.c vis.c vprintf.c 
	usr.bin/sup/sup: Makefile 
	usr.bin/sup/supfilesrv: Makefile 
	usr.bin/sup/supscan: Makefile 
Removed files:
	usr.bin/sup/src: ci.c cvt.c read_line.c salloc.c 

Log message:
o kill register
o lots of KNF
o passes -Wall
o fix some [ug]id_t vs. int issues
o use strlcpy/strlcat in favor of strncpy/strncat
o use mem* routines everywhere instead of old b* ones
o marked several questionable things for later fixing
o kill ci.c and cvt.c -- we don't use them
o kill read_line.c since it requires fgetln() (bad for portability)
o kill salloc.c since it is the same as strup()
o Replaced some #ifdef __OpenBSD__ with better tests
o remaining problems: malloc return values are rarely checked, select misuse