summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-03-21adopt to recent changes. noticed by david@Hans-Joerg Hoexer
2006-03-21- plug memleak when handling reallocation failure in hid_start()Jared Yanovich
- avoid NULL dereference while reclaiming memory during error handling in hid_start() ok ray dhill
2006-03-21Disassembler now pretty prints AML code (like acpidump)Jordan Hargrave
ok marco@
2006-03-21Call fts_close() when done; from NetBSD's Coverity scan; ok millert@Otto Moerbeek
jaredy@
2006-03-21Fix for PR 5043: shell startup scripts might contain binary characters butDavid Krause
grep should assume ASCII text, fixes umask detection ok millert@ jaredy@
2006-03-21fix endless loop in case of error in archive header.Marc Espie
2006-03-21Implementation of the Michael MIC as defined in IEEE 802.11i for TKIP.Reyk Floeter
The MIC generates a weak 64bit digest protected by an additional key. Obviously, this digest alg is required for future IEEE 802.11i/WPA support. test vectors passed on alpha amd64 mvme68k mvme88k sgi sparc sparc64 vax i386 ok djm@
2006-03-21Kill debug message that floods the log if ospfctl is killed while dumpingClaudio Jeker
large tables.
2006-03-21Correctly check for the end of the cmds table. There is no need to check forClaudio Jeker
c_func2. Until now ifconfig accepted something like ifconfig tun0 1.2.3.4 1.2.3.5 foobar without error. Additionally change the error message to a more comprehensible message. OK markus@, henning@
2006-03-21Make ural(4) read and show real MAC/BBP rev instead of hardcoded RT2570Pedro Martelletto
"Go ahead" damien@ via jsg@
2006-03-21Revert for the moment, according to Mike Belopuhov this producesOtto Moerbeek
errors in rc and netstart.
2006-03-21Partially revert last commit; jaredy@ showed the NULL deref can'tOtto Moerbeek
happen and tedu@ confirmed this is a known bug in Coverity's analysis.
2006-03-21Invalidating the full RIB and then only recalculating part of it is notClaudio Jeker
that smart. Kill the global rt_invalidate() instead clear only that part of the RIB that is actually recalculated. OK norby@
2006-03-21add support for `rcs -e[logins]'; "Looks good" ray@.Xavier Santolaria
2006-03-21add tests for `rcs -a' and `rcs -e', just not enabled yet.Xavier Santolaria
"Looks good" ray@.
2006-03-21x << long generates a lint warning, so silence it by casting __NFDBITSOtto Moerbeek
to unsigned; this is a conseqeunce of changing size_t to u_long. ok deraadt@ millert@ cloder@
2006-03-21instead of sizeof(array) / sizeof(element) computation, use the existingDaniel Hartmeier
end-of-array NULL marker, shuts up source analysis tool, from deraadt@
2006-03-21Encourage using strtonum(3).Ray Lai
Sync variable declarations with variables used in getopt(3) loop. OK otto@
2006-03-21Instead of duplicating rcs_suffixes and running strsep on it again,Ray Lai
just use the previous suffixes. Since all slashes were replaced with NULs, reading `suffixes' will give the first extension. OK xsa@
2006-03-21Allow creation of an RCS file if RCS_CREATE flag set.Ray Lai
OK xsa@
2006-03-20Don't forget to unlock of reading the RTC fails.Mark Kettenis
Should fix panic on iMac G5 (iSight).
2006-03-20NetBSD Coverity CID 2298: Fix memory leak.David Hill
NetBSD Coverity CID 2299: Fix memory leak. NetBSD Coverity CID 2301: Fix memory leak. ok ray@
2006-03-20spacingTheo de Raadt
2006-03-20Fix potential null deref and out-of-bound access.Otto Moerbeek
ok millert@ deraadt@
2006-03-20add limited support for format builtin in gnu-m4 mode, because I'm fedMarc Espie
up of patching it away in various autoconf derivatives. okay miod@
2006-03-20Don't increment a pointer *before* testing it for NULLDavid Hill
ok deraadt@
2006-03-20NetBSD Coverity CID 2302: Free fat if fatal error to avoid leak.David Hill
ok otto@ deraadt@
2006-03-20NetBSD Coverity CID 774: Don't increment a pointer *before* testing it for NULL!David Hill
ok otto@
2006-03-20NetBSD Coverity CID 2074: Fix memory leak.David Hill
ok deraadt@
2006-03-20NetBSD Coverity CID 1745: Fix memory leak.David Hill
yes otto@
2006-03-20NetBSD Coverity CID 2305: Fix memory leak.David Hill
ok deraadt@
2006-03-20spacingTheo de Raadt
2006-03-20be strict with tolower() castingTheo de Raadt
2006-03-20spacingTheo de Raadt
2006-03-20cast xstrdup to propert u_char *Theo de Raadt
2006-03-20x11_fake_data is only ever used as u_char *Theo de Raadt
2006-03-20spacingTheo de Raadt
2006-03-20annoying spacing fixes getting in the way of real diffsTheo de Raadt
2006-03-20sprinkle some ARGSUSED for table driven functions (which sometimes must ↵Theo de Raadt
ignore their args)
2006-03-20sprinkle u_int throughout pty subsystem, ok markusTheo de Raadt
2006-03-20make `rcs -a' use cvs_strsplit() for easiness; OK joris@.Xavier Santolaria
2006-03-20in a switch (), break after return or goto is stupidTheo de Raadt
2006-03-20add missing xfree()'s after we are done with cvs_strsplit();Xavier Santolaria
spotted by ray@, OK joris@.
2006-03-20djm did a typoTheo de Raadt
2006-03-20in a switch (), break after return or goto is stupidTheo de Raadt
2006-03-20When being verbose while deleting ike rules (-dv), print deletions instead ofHans-Joerg Hoexer
additions. Suggested by david@
2006-03-20When adding a connection, do not explicitly start that connectionHans-Joerg Hoexer
using "t" and "c" fifo commands. This is prone to a race when adding several tunnels between the same peers. Just let isakmpd start that connection on its own (using the connection checker).
2006-03-20make sure the command fifo is ready before isakmpd returns. ThisHans-Joerg Hoexer
resolves a startup race when interacting with ipsecctl. Suggested by and discussed with moritz@ ok moritz@
2006-03-20delint; cvs_buf_write_stmp() will never return non-zero:Niall O'Higgins
- remove superfluous error handling for cvs_buf_write_stmp() - change cvs_buf_write_stmp() return type to void ok joris@ xsa@
2006-03-20de-register.Brad Smith