summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
1998-12-20Don't assume /bsd if no system given, let the kvm routines pick a default ↵Todd C. Miller
(and thus use kvm_bsd.db if possible). Also minor manpage fixup.
1998-12-20o make sure C-style strings in packet are NUL-terminated and increase size ofTodd C. Miller
buf in report() for 256; W.H.J.Pinckaers@CPEDU.RUG.NL o kill sprintf in favor of snprintf everywhere (paranoia...)
1998-12-19back out recently added sanity check for data and bss as ksyms has neitherTodd C. Miller
1998-12-18merge freebsd version of acctonTheo de Raadt
1998-12-18fix 64-bit unaligned problemsTheo de Raadt
1998-12-18indentTheo de Raadt
1998-12-17Don't return stack-based data. This may have causedbrian
server-side CHAP authentication problems in the past :-/
1998-12-16more .Nm fixesAaron Campbell
1998-12-16Typo policebrian
Submitted by: Bill Fumerola <billf@FreeBSD.org>
1998-12-15Fix a potentially bad latency problem.brian
Problem reported by: Christopher Hall <hsw@acm.org>
1998-12-15always give .Nm macros an argument in SYNOPSIS sections; krw@tcn.netAaron Campbell
1998-12-15push CC and CFLAGS; wd@ics.nara-wu.ac.jpTheo de Raadt
1998-12-14Allow a variable as the first arg to ``set proctitle''.brian
1998-12-14Mention the cosmetic necessity to ``iface clear'' in ppp.linkdown.brian
1998-12-10Boy, this was tricky to find:brian
Remove any dial timer that might be hanging around at datalink_Destroy() time. This timer may be left running after the link is closed (making sure it's not automatically opened again too soon).
1998-12-10When using ``set device !someprogram'', when ``someprogram''brian
exits, it causes a select() exception. Handle these select() exceptions on link descriptors in pretty much the same way as loss of carrier rather than dropping out in confusion.
1998-12-05NOMAN fixeskstailey
1998-12-04support user.group or user:group, per chown(8)Theo de Raadt
1998-11-29Blow up a little more verbosely if something's feeding us garbage.Jason Downs
1998-11-28use MAXPATHLENTodd C. Miller
1998-11-28 o use in_port_tTodd C. Miller
o be careful with string copies; use strlcpy/strlcat when sensible o ignore requests with bogus network types
1998-11-24grammerTheo de Raadt
1998-11-23pass length for OpenFile(), bug in previous oflow detection; found by formTheo de Raadt
1998-11-23Even better; get rid of tempnam completely in favor of mkstemp)Todd C. Miller
1998-11-22fixed typo, noticed by jbernard@ox.mines.edu (netbsd/pkg/6481)Marc Espie
1998-11-22race-less tempnam() useTheo de Raadt
1998-11-22please -WallTheo de Raadt
1998-11-21missing \nTheo de Raadt
1998-11-20Add thread-safety to libc, so that libc_r will build (on i386 at least).David Leonard
All POSIX libc api now there (to P1003.1c/D10) (more md stuff is needed for other libc/arch/*) (setlogin is no longer a special syscall) Add -pthread option to gcc (that makes it use -lc_r and -D_POSIX_THREADS). Doc some re-entrant routines Add libc_r to intro(3) dig() uses some libc srcs and an extra -I was needed there. Add more md stuff to libc_r. Update includes for the pthreads api Update libc_r TODO
1998-11-19catch extra junk at the end of the numbersTheo de Raadt
1998-11-19- fix pkg_info to give more rational summary when COMMENTS files are weird.Marc Espie
- warn when COMMENT > 60 characters. *** In one month we turn this into an error -> fix packages files ***
1998-11-18correct strtol() mess around rpc version numbersTheo de Raadt
1998-11-18paramters -> parameters (but this whole page needs to be redone, hopefully soon)Aaron Campbell
1998-11-15put userdir back; "disabled" keyword is to be used insteadTheo de Raadt
1998-11-14put bootpd.dump in /var/run, not /tmp, to avoid /tmp raceTodd C. Miller
1998-11-13put p option in getopt(); garath@code.ridgefield.orgTheo de Raadt
1998-11-12make dirs in /usr/share/sendmail owned by group wheel to match mtreeTodd C. Miller
1998-11-10hash & cache hostnames; garath@code.ridgefield.orgTheo de Raadt
1998-11-10fix htdocs path; evanc@concer.toTheo de Raadt
1998-11-10Don't forget to initialise dbuff when debugging.brian
1998-11-08Explain what the command line switches do and what thebrian
various prompts signify.
1998-11-08Fix a few typosbrian
Submitted by: Forgotten (sorry)
1998-11-08usr.sbin/ man page repairs, a-iAaron Campbell
1998-11-07Nasty hack to add execute permission to helper scripts if they don'tTodd C. Miller
have it. I don't think hacking apache's configure mechanism is the correct approach for us, since it would just have to be redone for every import (and it requires more than just changing Configure). I don't think the read-only case is an issue since on a CD-ROM the permissions should be correct (I believe it is only ctm that doesn't update modes).
1998-11-06Set PATH before running ConfigureTodd C. Miller
1998-11-05Don't delete the primary interface address whenbrian
``iface clean'' is used in auto mode while there are no active links.
1998-11-03Back out previous change, the problem is Linux-specific. To quote Wietse ↵Todd C. Miller
'On UNIX systems with a BSD TCP/IP protocol stack, the accept() call does not return until the three-way handshake completes.'
1998-10-31If the CBCP callee offsers no callback, send our configuredbrian
response anyway. This is what Win95 does, despite it not being documented in the cbcp spec.... Reported by: Bill <petheram@acm.org>
1998-10-31Allow multiple systems (config labels) on the commandbrian
line and in the ``load'' & ``dial'' commands. The last label loaded becomes the current label name. Only require a label for -auto mode.
1998-10-31Catch other cases where the accept(2) can fail.Todd C. Miller
Works around a DOS attack noted by Michal Zalewski <lcamtuf@IDS.PL>. Patch by Nick Andrew <nick@ZETA.ORG.AU>.