summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-11-24Saner implementation for self-contained hostent and netent, and alsoEric Faurot
a couple of fixes.
2012-11-24Don't segfault if no subnet-mask is provided, or is marked 'ignore'Kenneth R Westerback
in dhclient.conf. Always zero out stack masks rather than using stack garbage when no subnet-mask is provided.
2012-11-24Get rid of some hard-coded constants. Improve memory allocation code.Mark Kettenis
2012-11-24knfEric Faurot
2012-11-24fix after asr updateEric Faurot
2012-11-24make separate structures for pack and unpackEric Faurot
2012-11-24Fix yacc warning.Mark Kettenis
2012-11-24Add code to create new system configuration. Work in progress, but there'sMark Kettenis
enough functionality to create a configuration for a t1k or t2k running System Firmware 6.7.x.
2012-11-24Export a few more prototypes. Make md_get_prop_val set the returned valueMark Kettenis
to -1 if the requested property isn't present.
2012-11-24complement "need an operator" fatal error message with the actual line content.Marc Espie
okay beck@
2012-11-24Don't output a . at the end of directory, as it is confusing.Marc Espie
okay beck@
2012-11-24be more strict in recognizing .if keyword() constructs, don't ignoreMarc Espie
unknown keywords. uniform white space handling. okay beck@
2012-11-24clean-up: move up .USE handling, so that the rest becomes a simple switch()Marc Espie
okay beck@
2012-11-24Add xasprintf.Mark Kettenis
2012-11-24grammar fix; from Chris Petrik, freebsd pr 173868Jason McIntyre
2012-11-23make hex and modhex decoding case insensitive, the latter particularyAlexander Hall
useful to avoid issues with SHIFT and CAPS LOCK on any keyboard. pointers on proper tolower usage by guenther@ "Yup" deraadt@, ok sthen@ on initial version ok guenther@ on final version
2012-11-23Copy from the is* manpages the CAVEAT about the input range.Philip Guenthe
ok jmc@
2012-11-23Mention hardmtu in the list relating to hwfeatures, suggested by jmc@Stuart Henderson
2012-11-23Change the way we encode devhandle and devino in the sysino such that we canMark Kettenis
handle up to 256 different interrupt vectors on cbus(4). This is enough to handle 128 channels.
2012-11-23fix mixed code and declarations, from brad@Stuart Henderson
2012-11-23resolve conflictsStuart Henderson
2012-11-23update to NSD 3.2.14, requested by/ok brad@Stuart Henderson
2012-11-23Document SIOCGIFXFLAGS, SIOCGIFMTU, SIOCGIFHARDMTU, SIOCGIFRDOMAIN ioctls.Stuart Henderson
2012-11-23Display hardmtu value when "ifconfig hwfeatures" is used.Stuart Henderson
Looks fine reyk@ ok mikeb@
2012-11-23Add SIOCGIFHARDMTU to allow retrieving the driver's maximum supported MTUStuart Henderson
looks fine reyk@ ok mikeb@
2012-11-23better way to set baudrate to 0; pointed out by gsoares@Mike Belopuhov
2012-11-23set ifp->if_baudrate with IF_Gbps() / IF_Mbps().Gleydson Soares
OK reyk@ sthen@
2012-11-23make sure to always pass an array of struct pf_src_node pointers toMike Belopuhov
the pf_map_addr. doing otherwise leads to the stack corruption. bug was reported and fix tested by arjan schrijver, thanks! ok jsing, henning, florian who has also found the same bug in pf_route and pf_route6 functions.
2012-11-23Missed file from last commit.Kenneth R Westerback
2012-11-23Use the libutil imsg framework rather than a hand-rolled localKenneth R Westerback
version. This is the last hand-rolled imsg implementation I could spot. Doesn't seem to break sparc64. Suggested by chris@, tweaks from brad@ and reyk@. ok reyk@
2012-11-23knfEric Faurot
2012-11-23knfEric Faurot
2012-11-23send ack on update map.Eric Faurot
ok gilles@
2012-11-23knfEric Faurot
ok gilles@
2012-11-23Replace the qwalk API (to retreive on disk envelopes at runtime) withEric Faurot
a simple QOP_WALK queue operation. Some knf and formating fixes while there. ok gilles@
2012-11-23space required between macro args and punctuation;Jason McIntyre
2012-11-23add a -M flag that does nothing; allows setups with -M in sndiod_flagsAlexandre Ratchov
to work.
2012-11-23Since there's no sndiod -> aucat link anymore, allow aucat to be runAlexandre Ratchov
in server mode even when not invoked as sndiod. This allows aucat and the new sndiod daemon to live together in /usr/bin, which makes easy to quickly compare sndiod and aucat (and spot possible regressions) without having to modify /usr/bin.
2012-11-23Remplace aucat server by a new sndiod daemon aimed to be simplerAlexandre Ratchov
smaller and faster than aucat. It's a drop in replacement with the following exceptions that don't affect the default setup: - The sample rate and the encoding are a per-device parameters thus -r and -e options must precede the corresponding -f option - MIDI thru boxes are dynamically created and no -M option is required anymore, so -M was removed. - MIDI ports are exposed with a new ``midi/N'' name, rather than abusing MIDI thru boxes. with help from armani@, ok deraadt@
2012-11-23Make the client wait for the first flow control message rather thanAlexandre Ratchov
assuming it can send a full initial data buffer. This requires protocol version bump (but no library version bump).
2012-11-23- Remove return's at the end of void functionsBrad Smith
- Some minor tweaking of the use of braces in two spots ok mikeb@
2012-11-22regress for AuthorizedKeysCommand; hints from markus@Damien Miller
2012-11-22Do not pass -Wmissing-prototypes when building on a non-ELF platform withMiod Vallat
gcc 3 as the compiler. The way constructors are built triggers this warning, which is fatal because of -Werror. ok espie@ guenther@
2012-11-22Stop saying "please", people needs to run sysmerge(8) after an upgrade.Antoine Jacoutot
Also s/repair/update . wording from sthen@ ok sthen@ deraadt@
2012-11-22Put helper function back, will be needed in a bit.Nicholas Marriott
2012-11-22Instead of worrying about xterm version, send DA and read DEC serviceNicholas Marriott
class which is more likely to be useful. Not used for anything yet anyway.
2012-11-22Don't need to send DECSL on detaching now, the code using higher levelsNicholas Marriott
has gone.
2012-11-22Don't bother to store the return value from pci_set_powerstate() as theBrad Smith
code that used to do something with it was removed with the previous commit. ok deraadt@
2012-11-21${.ALLSRC} and ${.OODATE} should always be defined, even for empty listsMarc Espie
of prerequisites. This prevents complaints from the var module and from other developers. That's a bug I introduced 5 years ago... found out by miod@ okay miod@
2012-11-21Atempting to eject a CD-ROM makes the SCSI midlayer generate a READ_TOCMark Kettenis
command. Silently fail that command instead of spamming the console.