Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-06-27 | %u for uid/gid; millert ok | Theo de Raadt | |
2002-06-25 | Now that we don't have a trailing newline we need to explicitly check | Todd C. Miller | |
that the first char in the line is not NUL after killing comments. | |||
2002-06-22 | Use strtok_r() instead of strsep() since the latter treats consecutive | Todd C. Miller | |
field separators as empty field. This is not what we want for whitespace-delimited fields. | |||
2002-06-21 | login_fbtab(3) fixes: | Todd C. Miller | |
o make first arg const since we don't modify it o use strsep() instead of strtok() as strtok() changes internal state o add some bounds checking and use strlcat() instead of pointer arithmetic o ANSI function headers Originally based on a patch from Lars J. Buitinck but much modified. | |||
2002-06-09 | some -Wall and spaces cleanup, scsi.c left. | Federico G. Schwindt | |
some brave soul should look at it. | |||
2002-05-26 | pid_t cleanup | Theo de Raadt | |
2002-05-24 | strlcpy at most 16 characters, so says man page | Theo de Raadt | |
2002-05-24 | strlcpy and KNF | Theo de Raadt | |
2002-05-24 | KNF | Theo de Raadt | |
2002-05-22 | atexit(3) can fail. handle error accordingly. deraadt ok | Jun-ichiro itojun Hagino | |
XXX libraries should not use atexit(3) from within, as program can terminate with _exit. | |||
2002-05-01 | o) start new sentence on a new line; | Mike Pechkin | |
o) always close .Bl tags; o) fix usage of .Xr; millert@ ok | |||
2002-04-30 | Initial cleanup: | Mike Pechkin | |
o) remove extra space in the end of line; o) remove extra blank lines in the end of file; o) remove .Pp before .Ss; o) CAVEAT -> CAVEATS; o) fix usage of .Fa; o) <blank-line> -> .Pp; o) wrap long lines; millert@ ok | |||
2002-04-10 | Clean up after pw_file(). | Mike Pechkin | |
millert@ ok deraadt@ ok to commit | |||
2002-02-26 | mdoc fixes from pjanzen | Peter Valchev | |
2002-02-26 | rephrase warning; from miod | Peter Valchev | |
2002-02-25 | print a warning that realpath points to internal static storage space that | Peter Valchev | |
will be overwritten by subsequent calls; suggested by pjanzen, ok millert | |||
2002-02-21 | fgsch, if you commit without test compiling ONE MORE TIME, I will send a ↵ | Theo de Raadt | |
castration team down to argentina | |||
2002-02-21 | use sizeof w/ defines; niklas@ millert@ ok. | Federico G. Schwindt | |
2002-02-19 | login_close() should avoid memory leak. | Mike Pechkin | |
millert@ ok | |||
2002-02-17 | Manual cleanup of remaining userland __P use (excluding packages maintained ↵ | Todd C. Miller | |
outside the tree) | |||
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2002-01-16 | Use the volatile specifier to fix warnings about variables being | Todd C. Miller | |
clobbered by longjmp / vfork instead of the gcc "(void)&foo;" hack. | |||
2002-01-02 | pids should be pid_t, not int | Mike Pechkin | |
2001-12-08 | save the pid as well, and only do the atexit in the same pid | Theo de Raadt | |
2001-12-01 | Warn that pidfile() will not have the expected removal behaviour if _exit() | Miod Vallat | |
is called. | |||
2001-11-14 | save errno in signal handler | Theo de Raadt | |
2001-10-01 | Start new sentence on a new line. | Mike Pechkin | |
jakob@ ok | |||
2001-09-29 | re-enable pidfile(3). ok millert@ | Jakob Schlyter | |
2001-09-29 | zap pidfile from here too, until conflict with kerberosV is fixed ok deraadt@ | Matthieu Herrb | |
2001-09-29 | jakob did not even do a make build, sigh | Theo de Raadt | |
2001-09-28 | add pidfile(3) prototype | Jakob Schlyter | |
2001-09-28 | multiple calls to pidfile(3) are actually ok, but there are problems if you ↵ | Jakob Schlyter | |
change the basename | |||
2001-09-28 | add pidfile(3) - write a daemon pid file. ok deraadt@, millert@. | Jakob Schlyter | |
2001-09-06 | oh this is horrible | Theo de Raadt | |
2001-09-05 | make sure that va_start() has matching va_end() | Theo de Raadt | |
2001-08-26 | Change the second arg to pw_mkdb() from a boolean flag to a set of | Todd C. Miller | |
bit flags ORed together. Currently the only flags defined are _PASSWORD_SECUREONLY and _PASSWORD_OMITV7 but this is enough to cause pw_mkdb() to run pwd_mkdb with the options we want. With this change we no longer generate the old V7 passwd file when only the extra fields in master.passwd (or the encrypted password) have changed. There are other programs that could probably use the _PASSWORD_OMITV7 flag; they will be converted at a future date. | |||
2001-08-16 | 2nd arg to pw_mkdb() | Todd C. Miller | |
2001-08-16 | consistently use #include "util.h" not <util.h> since util.h lives in this dir. | Todd C. Miller | |
2001-08-16 | Add new 'secureonly' arg to pw_mkdb() to correspond to pwd_mkdb's new -s | Todd C. Miller | |
flag and crank the library major due to the interface change. | |||
2001-08-12 | Get rid of extraneous #includes by using stub struct declarations. | Todd C. Miller | |
2001-08-06 | o) We always close .Bl and .Bd tags; | Mike Pechkin | |
o) .Sh AUTHOR -> .Sh AUTHORS; o) We don't like .Pp before/after .Sh; o) We don't like .Pp before/after .Rs/.Re; o) NetBSD -> .Nx; o) OpenBSD -> .Ox; millert@ ok | |||
2001-07-13 | RETURN VALUES, not RETURN VALUE | Todd C. Miller | |
2001-07-13 | Make the list of required #includes match reality. | Todd C. Miller | |
2001-07-11 | Plug memory leak in pw_copy(); millert@ ok | Aaron Campbell | |
2001-07-09 | correct type on last arg to execl(); nordin@cse.ogi.edu | Theo de Raadt | |
2001-06-18 | o move passwd.conf variables into login.conf | Todd C. Miller | |
o no longer install passwd.conf (but it is used if it exists and the needed info is not in login.conf) o added passwordtime and minpasswordlen login.conf variables | |||
2001-06-10 | proto; S@mSmith.net | Theo de Raadt | |
2001-06-03 | new license from Wietse; permits modification. This code is derived from | Theo de Raadt | |
logdaemon, so this applies: ftp://ftp.porcupine.org/pub/security/logdaemon_license | |||
2001-02-05 | please alpha | Theo de Raadt | |
2001-01-31 | move utmp to large format, usernames to 32 chars; downsj | Theo de Raadt | |