summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2004-07-17Move "Last logged in at.." message generation to the monitor, rightDarren Tucker
before recording the new login. Fixes missing lastlog message when /var/log/lastlog is not world-readable and incorrect datestamp when multiple sessions are used (bz #463); much assistance & ok markus@
2004-07-16Avoid generating an unused variable. From NetBSD. ok deraadt@Matthieu Herrb
2004-07-16* add prototypes for cvs_getargv() and cvs_freeargv()Jean-Francois Brousseau
* remove cvs_file_free(), cvs_freeargv() does exactly the same
2004-07-16Fix cvsd_privdrop() so we don't just drop effective IDs but all of them,Jean-Francois Brousseau
and call it instead of doing it by hand. Noticed by and original patch by Daniel Weeks
2004-07-15Minor simplification. Pass values in to login_getcapstr for "default" andTodd C. Miller
"error". No longer need check for NULL and set a default value manually.
2004-07-15Don't print a warning if kill(2) returns ESRCH since the process may haveTodd C. Miller
died on its own in the time between when the process list was consulted and when we do the actual kill. This fixes an annoyance for privsep processes (and others) where when you kill one the others die by themselves.
2004-07-15add -D for sodebug; ok deraadt, jmcMarkus Friedl
2004-07-15Skip SYSTEM and ourown proccess on every loop.Mike Pechkin
millert@, otto@
2004-07-15* remove the RCS escaping line, it is now fixedJean-Francois Brousseau
* add another one regarding rcs_splitpath()
2004-07-14* when writing to an RCS file, escape the funny charactersJean-Francois Brousseau
* pretty
2004-07-14fix rcs_findrev()'s searching algorithmVincent Labrecque
2004-07-14add a usage string for cvs diff optionsJean-Francois Brousseau
2004-07-14split rcs_patch in rcs_patch/rcs_patchlinesVincent Labrecque
2004-07-14prototype for cvs_ent_addln()Jean-Francois Brousseau
2004-07-14Unbreak the Entries loading code and move to a tail queue so we can removeJean-Francois Brousseau
entries as well when it will be needed
2004-07-14buffers should be freed using cvs_buf_free(), not free()Vincent Labrecque
2004-07-14make adding entries to the Entries file workJean-Francois Brousseau
2004-07-14allocate datenum dynamically (XXX - dont do it for each date)Vincent Labrecque
2004-07-14fix memleak on rcsnum reuseVincent Labrecque
initialize new members to 0
2004-07-14prepare the entries interface so we can add entriesJean-Francois Brousseau
2004-07-14get rid of the newline when copying the root stringJean-Francois Brousseau
2004-07-14/* line is not NUL-terminated */Vincent Labrecque
so don't strlcpy!
2004-07-14print diffargs correctly instead of a (null). This should make the diffJean-Francois Brousseau
output exactly the same as the one from GNU CVS
2004-07-14int is not ssize_tVincent Labrecque
2004-07-14cvsignore support and simpler API for file accessJean-Francois Brousseau
2004-07-14some stuff to doJean-Francois Brousseau
2004-07-14microoptimization!Vincent Labrecque
2004-07-14* document cvs_init() a bitJean-Francois Brousseau
2004-07-13indent an example;Jason McIntyre
2004-07-13.Xr tcpdrop 8 ,Jason McIntyre
2004-07-13bad macro here too: .I -> .ArJason McIntyre
2004-07-13* make the email address consistentJean-Francois Brousseau
2004-07-13* initial import from the cvs-tools moduleJean-Francois Brousseau
2004-07-13Simplify some things now that we only have login.conf to worry aboutTodd C. Miller
and fix two bugs introduced in the last commit (a duplicate free and reversed logic for the default cipher types).
2004-07-13passwd.conf has been deprecated since login.conf was imported.Todd C. Miller
Today it finally dies. Based on a diff from Gabriel Kihlman.
2004-07-12Fix incorrect macro, .I -> .EmBrad Smith
From: Eric S. Raymond <esr at thyrsus dot com> ok jmc@
2004-07-12m88k cross-compile goo.Miod Vallat
2004-07-11oopsVincent Labrecque
I just realized I gave a really bad advise to pval, negative goto-line are entirely valid (mean # of lines from end of file) go back to INT_MIN as the lower bound
2004-07-11change lower bound to 0, row shouldn't be negative; suggested & ok vincentPeter Valchev
2004-07-11use strtonum instead of strtoul and don't abuse a long for intPeter Valchev
functionality; ok vincent
2004-07-11spacesTheo de Raadt
2004-07-11Make newsyslog(8) deal correctly with a count of 0 in newsyslog.conf.Todd C. Miller
Based on a diff from Matthew Gream.
2004-07-11need to byteswap string table size before use for the alien endian a.outMichael Shalayeff
2004-07-11No need to free() after a failing realloc(), we're bailing out anyway.Otto Moerbeek
From Andrey Matveev.
2004-07-11prototypes; ok deraadtPeter Valchev
2004-07-10xmalloc()->xrealloc() so that patterns larger than _POSIX2_LINE_MAX*2-1Otto Moerbeek
work. From mycroft@netbsd. ok millert@
2004-07-09#ifdef hpux only for m68k or hppa; this needs a revisit since this showsTheo de Raadt
something flawed in the way that the emulation system calls are being handled
2004-07-09better includes for syscalls from kernelMichael Shalayeff
2004-07-09From the other BSDs: fix a bug that made sed(1) fail if the lastOtto Moerbeek
character of the line buffer was a backslash. ok deraadt@
2004-07-09Properly detect if a patch already has been applied, even if thereOtto Moerbeek
are no eols at eofs involved. Tested by quite some people. ok deraadt@