summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2003-05-23moved swapgeneric.cTed Unangst
2003-05-22remove -Werror; ok millertPeter Valchev
2003-05-21typos from pjanzen@Jason McIntyre
2003-05-19No longer complain about printing a.out files; this sort of detection reallyPaul Janzen
belongs in lpd filters.
2003-05-17Fix typo in last commit, spotted by Brian Poole. That'll teach meTodd C. Miller
to commit on an empty stomach.
2003-05-17Cannot use strlcpy() for strings in struct utmp since they are not guaranteedTodd C. Miller
to be NUL-terminated. Fixes a bug introduced in rev 1.37; noticed by deraadt@
2003-05-17sync to reduce diffsHenning Brauer
2003-05-17bye byeHenning Brauer
2003-05-15assume presense of getifaddrs(3).Jun-ichiro itojun Hagino
2003-05-15make getifaddrs(3) a default, as all BSD has it by nowJun-ichiro itojun Hagino
2003-05-15kill unusedJun-ichiro itojun Hagino
2003-05-15simplify by strdup. expilcitly specify IPPROTO_TCP (to cope with sctp-readyJun-ichiro itojun Hagino
getaddrinfo).
2003-05-14"error" was typed double, which is not suitable for getaddrinfo(3).Jun-ichiro itojun Hagino
from tobias
2003-05-14libpcap and tcpdump now understand the new pflog datalink type.Can Erkin Acar
old datalink type is still recognized. ok henning@ dhartmei@ frantzen@
2003-05-14Mention that without a password being specified, the account is disabledJason Peel
by default. Idea from Ross.Richardson@utas.edu.au, discussed with millert@; closes PR 3257.
2003-05-14move ETHERTYPE_xx declarations to <net/ethertypes.h>. meets netbsd practice.Jun-ichiro itojun Hagino
deraadt ok
2003-05-14remove the last of the MI commonsJason Wright
2003-05-13Don't reformat output beyond a minimum terminal width (60).Paul Janzen
millert@ ok
2003-05-13- document -VCamiel Dobbelaar
- add license (/me wrote it) ok jmc@
2003-05-13don't -I/usr/include/ssl, it's from old openssl distribution.Jun-ichiro itojun Hagino
markus ok
2003-05-13Sync valid username check w/ user(1). Patch from Brian Poole,Todd C. Miller
problem reported by juncus on misc
2003-05-13Don't allow usernames to begin with a dash since pwd_mkdb(8)Todd C. Miller
will reject such a name; from Brian Poole
2003-05-12Fix a bug where pkg_add would fail when dependencies got a few levels deepPeter Valchev
in the recursive install by removing the code which looks under All/ for more packages as this is not used on OpenBSD From Barry Scott <bscott@ridgewaysystems.com>
2003-05-12sprintf -> snprintf. ok krw@ deraadt@Ted Unangst
2003-05-12Do vis()-cleaning when displaying the print queue.Paul Janzen
ok deraadt@, ian@
2003-05-12feof() can only be used after you actually hit EOF so the checkTodd C. Miller
for no output from the at command was busted. Instead of using feof(), just fread() a buffer's worth and check to see if we got anything back. Closes PR 3252.
2003-05-12Sync to 0.6.2Camiel Dobbelaar
- UIDL digest calculation has been improved - minor bug fixes - -V switch to show version
2003-05-12cut crap, use strdup instead of malloc + strlcpy, use err()Henning Brauer
2003-05-12extend copyright to 2003Henning Brauer
2003-05-12no point in strncmp here; seen after question fromHenning Brauer
Pedro Bastos <pbastos@rdc.puc-rio.br>
2003-05-12explicit != NULL for pointerHenning Brauer
2003-05-12typo (mine) from Martin Reindl;Jason McIntyre
2003-05-12sync man page with marcus's recent upgrade;Jason McIntyre
little cleanup as well.
2003-05-11comma splice.Paul Janzen
2003-05-10typos;Jason McIntyre
2003-05-10Be polite about leaving invalid data around in globals, just in caseChad Loder
someone comes along later, modifies the code, and runs into a problem. OK beck@
2003-05-10catch up with pfctl changesHenning Brauer
2003-05-09No longer need -lcompatTodd C. Miller
2003-05-08replace strcpy with strlcpy and some strdup.Ted Unangst
ok rohee@ tdeval@ dhartmei@ requested by deraadt@
2003-05-08strcpy->strlcpyVincent Labrecque
ok deraadt
2003-05-08AUTHOR -> AUTHORS in .Sh, as per mdoc template.Jason McIntyre
2003-05-08used .Li for examples, as per first example.Jason McIntyre
CDROM -> CD-ROM for consistency. "make depend" and "make clean" wrapped in double quotes for consistency. ok millert@
2003-05-08.Xr newsyslogTodd C. Miller
2003-05-07bounds were sizeof(pointer) rather than size of the object; found withTheo de Raadt
anil's gcc bounds checker mod
2003-05-06fix harmless typo i introduced with previous string cleaning.Ted Unangst
spotted by rohee@
2003-05-05a couple of off-by-one string bounds in sscanfAnil Madhavapeddy
millert@ ok
2003-05-05-Wall cleanup: trim unused vars, better err() message in stdhosts,Anil Madhavapeddy
and constify rcsid[] deraadt@ ok
2003-04-30add an ap_server_strip_chroot for LoadModule tags. this partiallyAnil Madhavapeddy
unbreaks apachectl restarts (it still dies when it hits dlopen later on) henning@ ok
2003-04-30one more strvis -> strnvis.Vincent Labrecque
ok millert
2003-04-30pull in stdlib.h to avoid implicit decl of calloc(); ok henningJason Wright