summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-09-05The rewritten newfile() algorithm introduced in rev 1.12 wasTodd C. Miller
incorrect. This simpler version from Pete Honeyman passes all the tests I thow at it. OK deraadt@ some time ago.
2007-09-05IPv6 support for sppp layer, based on NetBSD version.Can Erkin Acar
ok claudio@
2007-09-05Add missing header to avoid warningCharles Longeau
ok millert@ ray@
2007-09-05typo; Mike BelopuhovTheo de Raadt
2007-09-05Cope with if counters being u_int64_t now here, too.Michael Knudsen
ok claudio
2007-09-05Correct the format strings after the recent rt_metrics changes.Claudio Jeker
rmx_pksent is not u_int64_t all others are just u_int. This is almost the same as in usr.bin/netstat.
2007-09-05Correct the format strings after the recent rt_metrics changes.Claudio Jeker
rmx_pksent is not u_int64_t all others are just u_int.
2007-09-05Counters switched to u_int64_t so use %llu to print them.Claudio Jeker
Found by and OK mk@ + OK mglocker@
2007-09-05- use a consistent grammatical case for the C comments sectionJason McIntyre
- remove useless brackets - new sentence, new line
2007-09-05Call ERR trap _before_ doing exit handling. Otherwise it's too lateOtto Moerbeek
and the ERR trap won't get called at all. ok millert@
2007-09-05probe for adt7462 (no driver yet, someone want to write one), and mentionTheo de Raadt
a few more sub-types as comments; ok kettenis
2007-09-05Document NORETURN, add it to the directive list and rearrange the entries.Federico G. Schwindt
ok deraadt@.
2007-09-05remove dmesg block showing sample register layoutTheo de Raadt
2007-09-05add man3f/cat3f directories for fortran man pagesSteven Mestdagh
ok espie@, millert@, jmc@
2007-09-05Implement qli_allocmem and qli_freememMarco Peereboom
2007-09-05Only match on RTL8185 if RTW_DEBUG is set, support for the RTL8185Jonathan Gray
was never finished due to a lack of information on the radios. ok reyk@
2007-09-05Implement qli_get_fw_state and fix a typo.Marco Peereboom
2007-09-05be extra careful with pointers in session_cmpReyk Floeter
2007-09-05add my copyright because i added a lot.Reyk Floeter
ok pyr@ (who is the first copyright holder)
2007-09-05Missing colon in optsring for 'B'Jonathan Gray
From Jan Niemann <jan.niemann@gns-systems.de>
2007-09-05store relay sessions in SPLAY trees instead of TAILQ lists. this willReyk Floeter
be used for faster lookups of sessions based on different criteria. ok pyr@
2007-09-05Fix debugging code, which tried to print the netgroup nameMoritz Jodeit
using the return value of _ng_print(), which returns void. ok millert@
2007-09-05Replace magic numbers in calls to shutdown(2)Moritz Jodeit
with their respective defines. ok millert@
2007-09-05Change some variables to their proper type size_t.Moritz Jodeit
ok millert@
2007-09-05increase th maximum string size for the sslciphers from 32 to 768.Reyk Floeter
this unbreaks some configurations that worked when sslciphers was a dynamic charbuf. ok pyr@
2007-09-05remove compat link to /usr/sbin/vnconfig, the program is in /sbin for oneAlexander von Gernler
release now. ok deraadt@ todd@
2007-09-05rename qli_prot_regs to qli_stat_regs to avoid possible confusion with ↵David Collins
qli_port_regs. ok marco@
2007-09-05fix date; spotted by jmcTheo de Raadt
2007-09-05no need to talk about bits; ok millert jmcTheo de Raadt
2007-09-05remove trailing blank line;Jason McIntyre
2007-09-05fix over-agressive match function, oopsTheo de Raadt
2007-09-04add support to print the derivated tree from the OpenPROM (alas devinfo orFederico G. Schwindt
prtconf); ok kettenis@. thanks to the various people who helped me test in different sparc* machines.
2007-09-04Zap the simplelock goo and general cleanup of comments.Thordur I. Bjornsson
also, theres no need to check first if we're the kernel pmap and then if we're the curmap in two different if statements, pmap_is_curpmap() check's if we're the kernel pmap, so nuke those tests. ok art@
2007-09-04Add mailbox command handler and "about firmware" commandMarco Peereboom
2007-09-04Some more simple malloc(n * m) -> calloc(n, m) conversions.Hans-Joerg Hoexer
ok deraadt@
2007-09-04XrTheo de Raadt
2007-09-04UltraSPARC CPUs always have an on-chip FPU. There really is no need to haveMark Kettenis
the code to detect the various FPUs of earlier SPARC V7 and V8 CPUs. ok deraadt@, miod@
2007-09-04driver for i2c lm93 sensor; very common on ipmi machines which have i2cTheo de Raadt
bmc's watching on the shared bus. if you disable ipmi, you might see it pop up (reminder why ipmi / i2c mixes are disabled: some ipmi's seem to violate the i2c bus locking protocol). tested by Alexander Lobodzinski
2007-09-04Removed dead code.Tobias Stoeckmann
OK joris@, ray@
2007-09-04Replaced strlen() with sizeof() - 1 when #define'd strings are used.Tobias Stoeckmann
OK ray@
2007-09-04Reset the chip after internal memory exhaustion, makes the driver more solidMiod Vallat
with heavy NFS usage.
2007-09-04use memrchr; ok millert@.Federico G. Schwindt
2007-09-04Add the ability to specify a host header when using http(s) check methods.Pierre-Yves Ritschard
Prodded by me, done by Gille Chehade <veins@evilkittens.org> ok reyk, jmc for the manpage bits.
2007-09-04Handle ^D as a)bort in log message question.Tobias Stoeckmann
OK joris@
2007-09-04make ssh(1)'s ConnectTimeout option apply to both the TCP connection andDamien Miller
SSH banner exchange (previously it just covered the TCP connection). This allows callers of ssh(1) to better detect and deal with stuck servers that accept a TCP connection but don't progress the protocol, and also makes ConnectTimeout useful for connections via a ProxyCommand; feedback and "looks ok" markus@
2007-09-04small fix in the error path when accepting new relay sessionsReyk Floeter
2007-09-04support chained ssl certificates; a chain can be added to theReyk Floeter
PEM-encoded server cert file (no CA support yet). makes a chained ssl certificate from Comodo work with hoststated, also tested with other certs (self-signed, Thawte Premium) thanks to ben (pr0ncracker at gmail dot com)
2007-09-04make file descriptor passing code return an error rather than call fatal()Damien Miller
when it encounters problems, and use this to make session multiplexing masters survive slaves failing to pass all stdio FDs; ok markus@
2007-09-04Use err(3) functions. input and ok millert.Federico G. Schwindt
2007-09-03Fix a few interrupt dispatch/receive register definitions.Mark Kettenis