summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2001-11-10Move extraloc to data segment. This fixes save of new locators for cloned ↵Mats O Jansson
devices. -moj ok @deraadt
2001-11-09Since all our arches have /dev/ksyms, replace rigid mentions of the kernelMiod Vallat
being /bsd with more correct terms, and remove /bsd and /dev/kmem from the FILES section if they were there.
2001-11-08Replace unreadable snprintf() and pointer arithmetic with simple strlcat().Todd C. Miller
If group file line would grow to be too long, leave it unmolested (previously it would get removed). Use fclose(fp) not close(fd) for a stream that was fdopen()ed. Otherwise we could leak memory. When calling fwrite() pass the buffer as a single element instead of using n one-byte elements.
2001-11-08swap arguments in libdepend, do it now before the bsd.port.mk parts are setMarc Espie
in stone...
2001-11-08-c is defualt. minor mdoc changes.Mike Pechkin
Spotted by form@. millert@ ok +help
2001-11-08use strncpy() to set ifname arg to ioctlJun-ichiro itojun Hagino
2001-11-07Unconfuse option description.Marc Espie
2001-11-07Recognize @libdepend, even though it doesn't do anything smarter with itMarc Espie
than @newdepend for now.
2001-11-07Say goodbye to @ignore_inst, we don't use it, and it doesn't even work inMarc Espie
any sane way...
2001-11-07Recognize libdepend keyword.Marc Espie
2001-11-07use -lrpcsvcTheo de Raadt
2001-11-07use -lrpcsvcTheo de Raadt
2001-11-07KNFTheo de Raadt
2001-11-07simplify buffer handling; ok hoTheo de Raadt
2001-11-07avoid buffer overflows. when will people learn to use snprintf correctlyTheo de Raadt
2001-11-07skip the unsafe bit in the signal handlerTheo de Raadt
2001-11-07typosTheo de Raadt
2001-11-07fix a bug that reports byte-count for packet-count.Kenjiro Cho
report by Panos GEVROS <P.Gevros@cs.ucl.ac.uk>
2001-11-06sparc64 needs LBL_ALIGN.Artur Grabowski
2001-11-06a bit of snprintf cleaningTheo de Raadt
2001-11-05some syslog_r uses in signal handlersTheo de Raadt
2001-11-05mark more handlers, and some syslog_r attemptsTheo de Raadt
2001-11-05remove last signal raceTheo de Raadt
2001-11-05remove extra sys/signal.hTheo de Raadt
2001-11-03Don't try to avoid name lookup waits with setjmp/signal. By deraadt@, me.Hakan Olsson
2001-11-02use _exit() in signal handler; mark other issuesTheo de Raadt
2001-11-02_exit() in signal handlerTheo de Raadt
2001-11-02avoid stdio in signal handler (not complete yet)Theo de Raadt
2001-11-01displayq to honor the terminal width; millert@ okMichael Shalayeff
2001-10-30ddp_print needs aligned data (alpha,sparc). Noted (with a patch) by ↵Hakan Olsson
<jepeway@blasted-heath.com>. Patch code relocated inside ddp_print(). Fixes PR# 1945.
2001-10-29MacOS 10.1 lpr clients send a format character of "o" to indicate ↵Theo de Raadt
postscript; jabley@automagic.org
2001-10-26(c)-2001.Hakan Olsson
2001-10-26accept the fact that people continue to use decimal pointsKenjiro Cho
to specify bandwidth... make the parser to use strtod(3) instead of strtoul(3).
2001-10-26getopt(3) returns -1 when out of args, not EOF.Mike Pechkin
itojun@ ok
2001-10-24When becoming a daemon, dup stdin, stdout, and stderr to /dev/nullTodd C. Miller
Change an unsafe vfork() to fork() Fix dup2() usage--must check for oldd == newd case and no need to close oldd Fixes annoying messages from sendmail about stdout being closed.
2001-10-24oldTheo de Raadt
2001-10-24prettyTheo de Raadt
2001-10-24getopt(3) returns -1 when out of args, not EOF.Mike Pechkin
millert@ ok
2001-10-24Avoid segv with some radius traffic. Fixes PR# 2135.Hakan Olsson
2001-10-24"minium" -> "minimum", ok deraadt@Daniel Hartmeier
2001-10-24If the peer refuses to provide an MRU, don't insist (even if 1500 isbrian
too big).
2001-10-24Some NetBSD/i4b ifdefsbrian
2001-10-24Handle ``set reconnect 0 0'' properly in -ddial mode.brian
2001-10-24Use CMSG_DATA and CMSG_SPACE macros; FreeBSDbrian
2001-10-24Write static arp entries as uid 0.brian
2001-10-24Fix a PASV bug; FreeBSDbrian
2001-10-09Don't try to use $groupname{$group_login} when we know it isTodd C. Miller
undefined. This caused adduser to not add a new login group when there was an entry like ":*::" in /etc/group due to a false positive on a broken sanity check. Since we *know* the gid of the new user's login group just use that.
2001-10-08force alignment, makes dhcp work on alpha'sEric Jackson
from netbsd. deraadt@ Ok.
2001-10-08Link order tweak so vax crunches happily.Hugh Graham
2001-10-03build apm and apmd on macppcDale Rahn
ok miod@