spelling fixes; from paul tagliamonte
Check auth_mkvalue(3) return value for NULL (malloc failure).For constant strings we don't actually need to use auth_mkvalue(3).Problem reported by Ross L Richardson.
Move definiton of struct token_types *tt to init.c from header file.Makes it build with -fno-common.ok deraadt
When system calls indicate an error they return -1, not some arbitraryvalue < 0. errno is only updated in this case. Change all (most?)callers of syscalls to follow this better, and let's see if
When system calls indicate an error they return -1, not some arbitraryvalue < 0. errno is only updated in this case. Change all (most?)callers of syscalls to follow this better, and let's see if this strictnesshelps us in the future.
show more ...
for some time now mandoc has not required MLINKS to functioncorrectly - logically complete that now by removing MLINKS from base;authors need only to ensure there is an entry in NAME for any funct
for some time now mandoc has not required MLINKS to functioncorrectly - logically complete that now by removing MLINKS from base;authors need only to ensure there is an entry in NAME for any function/util being added. MLINKS will still work, and remain for perl to easeupgrades;ok nicm (curses) bcook (ssl)ok schwarze, who provided a lot of feedback and assistanceok tb natano jung
assign pointers to NULL rather than 0
Call syslog() if login_* pledge fails; OK deraadt@
login_token needs pledge "flock" now.OK millert@
Pledge login_token with "stdio rpath wpath cpath fattr getpw tty".OK deraadt@
Use explicit_bzero() instead of memset() for zeroing out secrets.OK deraadt@
use LOGIN_NAME_MAX instead of L_cuserid, and adjust .h includes; ok millert
unsigned char for ctypeok okan kettenis
Correct format string mismatches turned up by -Wformat=2suggestions and ok millert@
use .Mt for email addresses; from Jan Stary <hans at stare dot cz>
fixed size types should be fixed size. long -> uint32_t.from Matthias Pitzl pitzl at genua de
Fix warnings.millert@ ok.
remove some unnecessary sys/param.h inclusions
improve synopsis markup of login_* utilities; use a more standardphrasing when listing flags; add missing arguments to flags in theDESCRIPTION section of the manual page.use of .Li (literal text)
improve synopsis markup of login_* utilities; use a more standardphrasing when listing flags; add missing arguments to flags in theDESCRIPTION section of the manual page.use of .Li (literal text) macros and standard wording suggested by jmc@ok jmc@
Switch the remaining users of libdes in src to libcrypto,telnet portion partially from the latest heimdal.ok mikeb@
replace cross references to other manual pages with the right macros.
convert to new .Dd format;
spacing
if tokendb_open() failed, do not crash if tokendb_close() is called
memset to 0, not '0'; millert@ ok
Remove extra return (0); call. otto@, henning@ ok
123