summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2004-09-15scratch that do { } while (0) wrapper in this caseTheo de Raadt
2004-09-15remove return error variables.. set but never usedTheo de Raadt
2004-09-15remove unused variableTheo de Raadt
2004-09-15no , allowed at end of enum listTheo de Raadt
2004-09-15use less doubles in daemons; markus@ okMichael Shalayeff
2004-09-15mention PrintLastLog only prints last login time for interactiveJared Yanovich
sessions, like PrintMotd mentions. From Michael Knudsen, with wording changed slightly to match the PrintMotd description. ok djm
2004-09-15Add some amusing ones.Marco Peereboom
2004-09-15/* fallthrough */ is something a programmer understands. ButTheo de Raadt
/* FALLTHROUGH */ is also understood by lint, so that is better.
2004-09-14remove unused variableTheo de Raadt
2004-09-14ARGSUSED before signal handler with unused signoTheo de Raadt
2004-09-14use sizeof(struct cand) instead of defining an unused cand object, andTheo de Raadt
then doing sizeof(cand). silly kids
2004-09-14arithmetic on void * not permittedTheo de Raadt
2004-09-14remove unused crap never deleted during developmentTheo de Raadt
2004-09-14ARGSUSED before signal handler with unused signoTheo de Raadt
2004-09-14delete unused functionTheo de Raadt
2004-09-14match foo[] between files, instead of foo[] in one, and *foo in anotherTheo de Raadt
2004-09-14ARGSUSED before signal handler with unused signoTheo de Raadt
2004-09-14ARGSUSED before signal handler with unused signoTheo de Raadt
2004-09-14lint begs for proactive casting, so we give itTheo de Raadt
2004-09-14ARGSUSED before signal handler with unused signoTheo de Raadt
2004-09-14delete unused variableTheo de Raadt
2004-09-14optind and optarg not usedTheo de Raadt
2004-09-14use __inline instead of inline (for portability)Theo de Raadt
2004-09-14ARGSUSED before signal handler with unused signoTheo de Raadt
2004-09-14unalias system() copy from libc versionTheo de Raadt
2004-09-14sprinkle some ARGSUSED for table driven functionsTheo de Raadt
2004-09-09printing the raw ip protocol name breaks the protocol loop, so justOtto Moerbeek
print the number. ok henning@ markus@ deraadt@
2004-09-07cleanup multiplex control socket on SIGHUP too, spotted by sturm@Damien Miller
ok markus@ deraadt@
2004-09-07Do not incorrectly sign-extend a mode_t value.Miod Vallat
ok deraadt@
2004-09-06set the xflags; form netbsd; millert@ deraadt@ otto@ okMichael Shalayeff
2004-08-31use the correct Entries path to store in cef_path;Joris Vink
ok jfb
2004-08-31Do not crash when there is no user specified in the CVSROOT. SimplifiedJean-Francois Brousseau
version of a diff by Joris Vink.
2004-08-31check return value of strdup(3);Joris Vink
ok jfb
2004-08-30For username foo.bar, don't treat "bar" as a kerberos instance,Todd C. Miller
that was a kerb4'ism. OK deraadt@
2004-08-30.Xsession -> .xsession;Jason McIntyre
originally from a pr from f at obiit dot org, but missed by myself; ok markus@ matthieu@
2004-08-30s/keygen/keyscan/Markus Friedl
2004-08-28don't erroneously close stdin for !reexec case, from Dave Johnson; ok markus@Damien Miller
2004-08-27Add CF_NOSYMS to the flags so we skip symbolic linksJean-Francois Brousseau
2004-08-27Instead of keeping an open pointer to the Entries file when opening withJean-Francois Brousseau
write access, close it and reopen it only on demand, since large trees can contain enough Entries files to generate a 'Too many open files'. Problem spotted by Todd Fries.
2004-08-27Unbreak when running into files with an inode of 0Jean-Francois Brousseau
2004-08-27cleanup and reset the valid requests array when allocating a new rootJean-Francois Brousseau
structure. Also enable the use of at least Valid-responses and valid-requests
2004-08-27When the remote version string points to NULL, print "(unknown)" likeJean-Francois Brousseau
GNU CVS does
2004-08-27Skip directory entries which have a file number of 0Jean-Francois Brousseau
2004-08-27Do not attempt to free directory information on error cases inJean-Francois Brousseau
cvs_file_getdir(). That information will get freed anyways by cvs_file_free(). Fixes a double free found by Todd Fries.
2004-08-27Fix two descriptor leaksJean-Francois Brousseau
2004-08-26get rid of references to rhosts authentication; with jmc@Markus Friedl
2004-08-25typos from -f (PR #3908);Jason McIntyre
2004-08-25typos from -f (PR #3907);Jason McIntyre
2004-08-23anotherHenning Brauer
2004-08-23Make behavior if the utility was not found or could not be executedTodd C. Miller
match the documentation. The old code was making assumptions about how vfork() is implemented which are not valid on OpenBSD. From Jason Ish.