Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-03-25 | delete cast not required | Theo de Raadt | |
2006-03-25 | remove (char *) casts to a function that accepts void * for the arg | Theo de Raadt | |
2006-03-25 | use strtonum() instead of atoi() [limit X screens to 400, sorry] | Theo de Raadt | |
2006-03-25 | mark two more signal handlers ARGSUSED | Theo de Raadt | |
2006-03-25 | cast strtonum() result to right type | Theo de Raadt | |
2006-03-25 | nicer size_t and time_t types | Theo de Raadt | |
2006-03-25 | spacing | Theo de Raadt | |
2006-03-25 | needed casts (always will be needed) | Theo de Raadt | |
2006-03-25 | Put $OpenBSD$ tags back (as comments) to replace the RCSID()s that | Damien Miller | |
Theo nuked - our scripts to sync -portable need them in the files | |||
2006-03-25 | only resolve symlinks in the dirname of rename()'s arguments, | Nikolay Sturm | |
but not in the filename ok provos, no objections from tedu (who doesn't use systrace) | |||
2006-03-25 | Highlight that running an OSPF router without forwarding enabled is | Esben Norby | |
very damaging to the network. ok claudio@ | |||
2006-03-25 | ddb.{console,panic} cannot be raised at securelevel 1 either; | Jason McIntyre | |
from nicholas marriott; ok miod ray | |||
2006-03-25 | Use correct directory in example. | Ray Lai | |
From Alf Schlichting. OK jmc@ and otto@ | |||
2006-03-25 | Use fstat(3) instead of stat(3) as a matter of principle. We don't | Otto Moerbeek | |
like race conditions, even if the effects of these are void and empty. | |||
2006-03-25 | ANSI and KNF. | Brad Smith | |
2006-03-25 | regen | Brad Smith | |
2006-03-25 | add a second Packet Engines Yellowfin PCI id. | Brad Smith | |
2006-03-25 | set/clear the all frames bit in the receive filter when | Brad Smith | |
enabling/disabling promisc mode instead of calling sis_init(). | |||
2006-03-25 | sync | Theo de Raadt | |
2006-03-25 | "abormally" is a perfectly cromulent word, but "abnormally" is better | Damien Miller | |
2006-03-25 | change OpenSSH's xrealloc() function from being xrealloc(p, new_size) to | Damien Miller | |
xrealloc(p, new_nmemb, new_itemsize). realloc is particularly prone to integer overflows because it is almost always allocating "n * size" bytes, so this is a far safer API; ok deraadt@ | |||
2006-03-25 | introduce xcalloc() and xasprintf() failure-checked allocations functions | Damien Miller | |
and use them throughout openssh xcalloc is particularly important because malloc(nmemb * size) is a dangerous idiom (subject to integer overflow) and it is time for it to die feedback and ok deraadt@ | |||
2006-03-24 | oops, chip misnamed; roman.hunt@comcast.net | Theo de Raadt | |
2006-03-24 | update supported device list and sort it while im here. | David Gwynne | |
2006-03-24 | Plug leak in error path; from Alexey Dobriyan; ok ray@ | Otto Moerbeek | |
2006-03-24 | For those of us (including me) who can't type: show an error message if | Otto Moerbeek | |
the argument is a dir. ok tom@ commit #1000 in slighlty less than 1000 days of commit access :-) | |||
2006-03-24 | Remove telldir/seekdir support from the internal ld.so lib, it's not | Otto Moerbeek | |
used. ok drahn@ | |||
2006-03-24 | regen | Brad Smith | |
2006-03-24 | add the Globespan PCI vendor id. | Brad Smith | |
From Stuart Henderson | |||
2006-03-24 | ANSIfy. Ok ray@ | Kjell Wooding | |
2006-03-24 | change rcs_parse_deltas() and rcs_parse_deltatexts() return value | Xavier Santolaria | |
to void as they never return non-zero. OK ray@. | |||
2006-03-24 | change rcsclean_file() return type to void as it does not need | Xavier Santolaria | |
to be checked. OK ray@. | |||
2006-03-24 | add test for `rcs -Aoldfile'; not enabled yet. ray@ likes it. | Xavier Santolaria | |
2006-03-24 | typo; | Jason McIntyre | |
2006-03-24 | sort; | Jason McIntyre | |
2006-03-24 | i wish all new hardware was this easy to support. acer labs usb2 data | David Gwynne | |
link cable seems happy. thanks to sevan janiyan for the gear. | |||
2006-03-24 | Remove unused variables, better integer types, prevent fallthroughs. | Ray Lai | |
Found by lint. Compare char * variables against NULL for consistency and add parentheses around complicated comparisons, suggested by xsa@. OK xsa@ | |||
2006-03-24 | hppa has CardBus and USB as well so add umsm(4). | Jonathan Gray | |
Pointed out by mickey. | |||
2006-03-24 | move the mp tramp higher to avoid trashing boot args and also to fight ↵ | Michael Shalayeff | |
strange memory zeroing happennning on some amd machines; toby@ ok | |||
2006-03-24 | Document fib couple and decouple. Mostly form bgpctl.8 but with a warning | Claudio Jeker | |
that fib decouple my break you network. OK norby@ | |||
2006-03-24 | Enable umsm(4) on archs that support CardBus. | Jonathan Gray | |
2006-03-24 | Driver for the serial interface to Qualcomm MSM EVDO modems. | Jonathan Gray | |
Tested with Verizon Wireless by jolan@ ok dlg@ | |||
2006-03-24 | regen | David Gwynne | |
2006-03-24 | Acer Labs USB 2.0 Data Link cable. its a host to host cable | David Gwynne | |
2006-03-24 | oops, noticed by David Hill. | Marc Espie | |
2006-03-24 | The Buffalo WLI-CB-B11 card uses SA2400 radio. | Robert Nagy | |
2006-03-24 | Allow the -x flag to be used without an extension. | Ray Lai | |
``that makes sense'' xsa@ | |||
2006-03-24 | Make sure `path' variable is always NUL-terminated. | Ray Lai | |
Totally different diff (but functionally equivalent) by Loic Tortay and okayed by tedu@. ``Looks sane to me'' moritz@ | |||
2006-03-24 | KNF, no binary change. | Ray Lai | |
From Han Boetes. | |||
2006-03-24 | Fix RCS_KWEXP_INVAL() macro. | Ray Lai | |
Pointed out by Theo. Okay xsa@. |