summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-07-11remove mips leftovers; ok bradPeter Valchev
2001-07-11Return 0 on success, convert exit to returnAngelos D. Keromytis
2001-07-11make it compilable in all 4 combination of KRB4/KRB5 settings. dugsong okJun-ichiro itojun Hagino
XXX isn't it sensitive to the order of -I/usr/include/kerberosIV and -I/usr/include/kerberosV?
2001-07-10Use offsetof() from sys/param.h, not a local define.Kenneth R Westerback
2001-07-10don't panic if fork or pipe fail (just return an empty passwd).Markus Friedl
2001-07-10Style.Angelos D. Keromytis
2001-07-10typo; from Joseph Mallett <jmallett@xMach.org>Michael Shalayeff
2001-07-10put another YP-only piece inside the ifdefTheo de Raadt
2001-07-10-WallTheo de Raadt
2001-07-10Missing breaks.Marc Espie
Case labels must be integral values for deterministic behavior.
2001-07-10ANSI C does not like labels: without a statement after that.Marc Espie
Restore missing breaks.
2001-07-10some .Pp removed, according to mpech@Daniel Hartmeier
2001-07-10(c)-2001Hakan Olsson
2001-07-10Rewrite packet capture to handle IPv6 addresses.Hakan Olsson
2001-07-10htonl() for null.null_family, ok niels@, ho@Markus Friedl
2001-07-10Oops, we can't use 0 as next_addr()'s error return since 0.0.0.0 isTodd C. Miller
a valid address. Instead I add a pointer to the result as a parameter and return 0 on failure and 1 on success. Also uses inet_pton() instead of inet_aton().
2001-07-10Resolve as a host name if not an IP address; dhartmei@ OKTodd C. Miller
2001-07-10another lame OpenBSD tag.Federico G. Schwindt
2001-07-10ether_input_mbuf() conversion; thanks to drahn@ for testing.Federico G. Schwindt
2001-07-10Unbreak commit to use memset.c instead of bzero.cDale Rahn
Suspect that this is really broken code in libkern/arch/powerpc/Makefile.inc
2001-07-10Until fxp and if_de are fixed with the correct parameter to vtophys()Dale Rahn
this function cannot be prototyped.
2001-07-10Wait 1 second after soft reset.Constantine Sapuntzakis
Add back IDENTIFY after soft reset. Fix ch_flags -> ch_status in a couple places
2001-07-10Update this to match the new nat.conf format and give the grammarTodd C. Miller
in the same dialect of BNF in pf.conf.5
2001-07-10move "proto" in the nat case as wellTodd C. Miller
2001-07-09Move the proto field to be after the "on" argument which is consistentTodd C. Miller
with pf.conf. If no proto is specified tcp is assumed. dhartmei@ OK
2001-07-09do compare in host order. found by millert@.Daniel Hartmeier
2001-07-09Match CBEM56G as wellNiklas Hallqvist
2001-07-09syncNiklas Hallqvist
2001-07-09Ehh, nice duplicateNiklas Hallqvist
2001-07-09Trivial ether_input_mbuf().Federico G. Schwindt
2001-07-09Compute %used in -P mode as a double, just like we do in normal printingTodd C. Miller
mode. Fixes an int wraparound problem noted by mike@erdelynet.com
2001-07-09sync with latest kame.Jun-ichiro itojun Hagino
- a memory leak - correct timer value - wording fixes in manpage rtsock.c is omitted for simplicity, as it is not meaningful on openbsd.
2001-07-09trivial ether_input_mbuf().Federico G. Schwindt
btw, shouldn't this code share the am7990 core?
2001-07-09remove extraneous bracesPaul Janzen
2001-07-09Add missing closing parenMarco S Hyman
2001-07-09use errx()Paul Janzen
2001-07-09Remove .Pp next to .Sh; mpech@prosoft.org.lvPaul Janzen
2001-07-09Fixes, mainly from Thomas Nordin <nordin@cse.ogi.edu>Paul Janzen
2001-07-09Fix typo; addresses PR/1931 from heko@saitti.netAaron Campbell
2001-07-09ch_flags should be ch_statusConstantine Sapuntzakis
2001-07-09regenMichael Shalayeff
2001-07-09CBEM56G from matthieu@ (;Michael Shalayeff
2001-07-09Use socklen_t, not size_t for type of length arg to recvfrom()Todd C. Miller
2001-07-09Make quad types on alpha be "long long" not "long". This means thatTodd C. Miller
printf's "%lld" can be used with a quad_t or int64_t without a bogus cast.
2001-07-09Minor code clean ups.Kenneth R Westerback
Rename some functions for better consistancy/clarity, e.g. tul_wdtr_done -> tul_wide_done tul_msgout_wide -> tul_msgout_wdtr Consolidate extended message generation into new function tul_msgout_extended() by using HCS_Msg[] array, replacing several repetitive bus_write_*() code sections. A couple of minor code clarifications to eliminate extra return statements and make absolutely sure HCS_ActScb is NULL during a reselect.
2001-07-09Move IFQ_SET_READY macro to attach time.Federico G. Schwindt
2001-07-09More lame OpenBSD tags.Federico G. Schwindt
2001-07-09Refer to INIC-940 in NAME sectionKenneth R Westerback
2001-07-09too bad you are wrong. these binaries must link on powerpc and alpha, and ↵Theo de Raadt
you just broke them again
2001-07-09Comment out extraneous .Pp since the text it goes with is commented out.Todd C. Miller
mpech@prosoft.org.lv