summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2000-10-17- Add $OpenBSD$ tag.Aaron Campbell
- Remove hard sentence breaks.
2000-10-16fix from 1.3.14 for mod_vhost_alias to ensure cgi script contents are not sentBob Beck
out by the server
2000-10-16Add spppcontrolChris Cappuccio
2000-10-16spppcontrol from FreeBSDChris Cappuccio
This allows users to set PAP/CHAP information for if_spppsubr (sync PPP) when it's in PPP mode Now working on a good way to switch between HDLC and PPP (and frame relay soon) for sppp
2000-10-16mod_rewrite update from 1.3.14 to prevent problems with bogus mod_rewriteBob Beck
configs allowing access to any file on the server.
2000-10-16respect CC.Brad Smith
2000-10-16use "cc -shared" to link the modules on 2.8 and up.Brad Smith
Ok'd by beck@, espie@ and deraadt@
2000-10-16include the revision of OpenBSD with the output.Brad Smith
2000-10-16Xr saTheo de Raadt
2000-10-16Let pkg_add be slightly more informative on tar balls that happen notMarc Espie
to be packages. Partially based on suggestions made on misc@, thanks guys !
2000-10-16Re-align with reality: We use ARP for all Ethernet types.Christian Weisgerber
Pointed out by Hans Guenter Weigand <hgw@d1906.inka.de>. ok millert@
2000-10-16use sigjmp_buf's, and use poll instead of select. various other smallTheo de Raadt
tweaks. tested by aaron.
2000-10-15add note that pkg_add is not to be used for system distribution files.Marco S Hyman
I'd like to reference some other doc/man page... any ideas as to what?
2000-10-14- "Available options:" -> "The options are as follows:".Aaron Campbell
- Move HISTORY section above BUGS.
2000-10-14- Correct .Nm usage.Aaron Campbell
- Compatify SYNOPSIS. - Introduce the options. - Add some punctuation.
2000-10-14Capitalization.Aaron Campbell
2000-10-13fix build on alpha with -Werror; David Leonard <david.leonard@csee.uq.edu.au>Jakob Schlyter
2000-10-12cleanupsTheo de Raadt
2000-10-10Remove useless line; mj@who.netTodd C. Miller
2000-10-10cast size_t to u_long on printing, be friendly with alpha. sync with kameJun-ichiro itojun Hagino
2000-10-10Use supplied vax support. Don't know if it works.Hugh Graham
2000-10-09Don't exit when we get ENOBUFS from writev(), drop the packet instead.brian
2000-10-09If write() gives -1/ENOBUFS, keep the packet and sleep for 1/10thbrian
of a second before attempting to write it again (unless there's something else to do instead).
2000-10-09fix ndp -c (flush link-locals properly)Jun-ichiro itojun Hagino
sync with latest kame.
2000-10-09Create fd_sets big enough to handle getdtablesize() descriptors.brian
2000-10-07sync with kame, to make future upgrade easierJun-ichiro itojun Hagino
2000-10-07use poll to avoid fd_set overflowTheo de Raadt
2000-10-07- Add console/X mouse transparency, so you don't have to kill moused to run X.Aaron Campbell
- Introduce `select units' (by char/word/line). Behaves more like an xterm now. - Serial mice should now work after this commit. - Many bug fixes. Work by Jean-Baptiste.Marchand@epita.fr, except for the X cohabitation code which was written by Julien.Montagne@epita.fr.
2000-10-06use dynamic fd_set to avoid overflowTheo de Raadt
2000-10-06printf string format audit. from: sommerfeld@netbsd.orgJun-ichiro itojun Hagino
2000-10-06Fix byte ordering for CuSeeMe and add some tidy-ups; FreeBSDbrian
2000-10-03set bsize for hash to some reasonable value instead ofMichael Shalayeff
defaulting to the underlying fs block size. add rcsid tag. millert@ ok.
2000-10-03Add $OpenBSD$. (jakob@ ok)Hakan Olsson
2000-10-03Add -Wall -Werror to CFLAGS. (niklas@, jakob@ ok)Hakan Olsson
2000-10-03Print IKE notifications (with -v). Style. (jakob@ ok)Hakan Olsson
2000-10-03Compile with -Wall. Add $OpenBSD$. (jakob@ ok)Hakan Olsson
2000-10-03More careful ntohs/ntohl etc. From Gunnar Lindberg <lindberg@cdg.chalmers.se>Hakan Olsson
2000-10-03More format string paranoia; deraadt@ okAaron Campbell
2000-09-30Some format string problems that were missed during initial audit; deraadt@ andAaron Campbell
millert@ ok
2000-09-28according to the strlcpy man page the order of argumentsMichael Shalayeff
is: destination, source, size. it seems in the commit of version 1.3 a couple of maxwell daemons of the second kind exchanged second and third arguments in every call to the stlcpy, thanks gcc. at this late hour we hope they are up to their eternity-spanning poker game for hot molecules and the diff will finally get in untampered.
2000-09-24Correctly ignore -n flag with -d when both options are separate (i.e.Miod Vallat
arp -n -d, not arp -nd), millert@ ok
2000-09-24re-apply this fix for big endian systems, this was lost in rev 1.12Brad Smith
2000-09-21do not hardcode -g -O2 etc. into CFLAGS; pointed out by brad@Michael Shalayeff
2000-09-18make process.S compile on mips. ok art@. -mojMats O Jansson
2000-09-16synchronize with latest kame.Jun-ichiro itojun Hagino
- improve exit code and logging. - repair multicast address rejection (IN_MULTICAST takes host endian value) - repair ftp relaying, when the result of PASV does not have paren. - repair ftp relaying, when EPSV is sent from client.
2000-09-15check return value for setenv(3) for failure, and deal appropriatelyTheo de Raadt
2000-09-14Fix some style nitsbrian
2000-09-14Support PPPoATM, disabled for now as /usr/include/netnatm doesn't existbrian
Submitted by: Jakob Stoklund Olesen <stoklund@taxidriver.dk>
2000-09-14Understand IPPROTO_ESP and IPPROTO_AH packetsbrian
Submitted by: Angelos D. Keromytis <angelos@dsl.cis.upenn.edu>
2000-09-13Use vis(3) when escaping non-printable characters instead of doing itTodd C. Miller
(poorly) by hand. Also fixes a potential one byte overflow noted by Solar Designer.