summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-12-09assign ehcidebug to USB_DEBUG ioctl argument.Yojiro Uo
add priv check to the ioctl. only root priv should access these debug flags. ok deraadt@
2008-12-09correct sftp(1) and corresponding usage syntax;Damien Miller
bz#1518 patch from imorgan AT nas.nasa.gov; ok deraadt@ improved diff jmc@
2008-12-09correct sftp(1) and corresponding usage syntax;Damien Miller
bz#1518 patch from imorgan AT nas.nasa.gov; ok deraadt@ improved diff jmc@
2008-12-09don't leave junk (free'd) pointers around in Forward *fwd argument onDamien Miller
failure; avoids double-free in ~C -L handler when given an invalid forwarding specification; bz#1539 report from adejong AT debian.org via Colin Watson; ok markus@ dtucker@
2008-12-09Deal correctly with failures in remote stat() operation in sftp,Damien Miller
correcting fail-on-error behaviour in batchmode. bz#1541 report and fix from anedvedicky AT gmail.com; ok markus@
2008-12-09The ~C escape handler does not work correctly for multiplexed sessions -Damien Miller
it opens a commandline on the master session, instead of on the slave that requested it. Disable it on slave sessions until such time as it is fixed; bz#1543 report from Adrian Bridgett via Colin Watson ok markus@
2008-12-08do device classification for non-UVC and firmware-needing devices togetherTheo de Raadt
in the same device table, and abstract usb control out of the ricoh firmware loader so that it can be reused by other loaders ok mglocker
2008-12-08syncTheo de Raadt
2008-12-08there are two isight models, at leastTheo de Raadt
2008-12-08Rewrite renice(8) to be POSIX compliant while still maintainingTodd C. Miller
traditional BSD usage. Man page OK jmc@, OK deraadt@
2008-12-08syncTheo de Raadt
2008-12-08isightTheo de Raadt
2008-12-08some sscom and interrupt cleanup, closer to usable userland.Dale Rahn
2008-12-08Don't forget to map the pci interrupt.Owain Ainsworth
Noticed by kettenis@.
2008-12-08Make the various drm drivers print the interrupt they're using.Mark Kettenis
ok oga@
2008-12-08- Firmware header field "len" for Ricoh devices is uint8_t not uint16_t.Marcus Glocker
- Consistency in comments.
2008-12-08Add ability to load firmware for devices which require it.Marcus Glocker
Tested by deraadt@ and myself.
2008-12-08Do not short circuit pseudo commands when we get a match since, dependingTodd C. Miller
on the settings, we may need to examine all commands for tags.
2008-12-08The iSight in my Apple MacBook Pro just works. Add it here.Paul de Weerd
Requested by and ok mglocker@
2008-12-08report memory and swap in hrStorage, and implement hrProcessor to reportReyk Floeter
hrProcessorLoad (where load means the percentage of time the system was not idle during the last minute). based on HOST-RESOURCES-MIB. ok dlg@
2008-12-08change the handling of redirections with the sticky-address option set:Reyk Floeter
instead of flushing the complete source tracking table (sticky addresses) in pf on host state changes, just flush the entries for hosts that have been marked as down in the relayd table. this fixes ugly problems with users loosing their sessions if another host or redirection was going down. ok cloder@
2008-12-08remove links to the ipw web page, as damien no longer maintains it;Jason McIntyre
ok damien
2008-12-08syncTheo de Raadt
2008-12-07yet another one nvidia ahci controller that needs special handling.Mike Belopuhov
from form@. ok dlg, krw
2008-12-07match string "passwordauthentication" only at start of line, not anywhereDamien Miller
in sshd -T output
2008-12-07time_t is signed, so use INT_MAX rather than UINT_MAX when parsing a time_tChad Loder
with strtonum
2008-12-07typos in comments: recieve -> receive.Matthieu Herrb
2008-12-07clean up find_bounds(), no binary change; 'dead initialisation' llvm/clang; ↵Constantine A. Murenin
ok krw millert
2008-12-07When resampling, don't require the sample frequency to be an integer.Alexandre Ratchov
This removes the arithmetic constraint between the sample frequency and the block size and all the associated code. Now aucat can work in server mode with any block size. ok jakemsr
2008-12-07Kill src_node structure. It is mostly redundant with rt_node andMichele Marchetto
adds unneeded complexity. Move any stuff to rt_node structure.
2008-12-07Simplify queue_record_incoming_envelope.Jacek Masiulaniec
ok gilles@
2008-12-07Disable EV_READ when sending IMSG_PARENT_AUTHENTICATE.Jacek Masiulaniec
This is for consistency, code is not reached yet. ok gilles@
2008-12-07Replace evbuffer_add_printf calls with wrapper function, session_respond,Jacek Masiulaniec
which additionally suffixes <CRLF>, and enables EV_WRITE. Remove bufferevent_enable(.., EV_WRITE) from session_command and session_pickup so that EV_WRITE is enabled in exactly one place, session_respond. Change some responses slightly to make code fit 80 columns. ok gilles@
2008-12-07Make acpiprt(4) check whether the current interrupt routing is "possible" andMark Kettenis
pick a new one from the list of possible routings if it isn't or if a pin is currently not routed. Delay re-routing interrupts until we establish a handler for it. This prevents us from messing with unused interrupt pins which may have fatal consequences (some machines spontaniously reboot). The heuristics for picking an interrupt from the list of possibe ones probably needs some tweaking still, but this makes several NVIDIA-based boards work much better than before. tested by many, ok marco@
2008-12-07Change example to run /etc/netstart always (secure by default).Ian Darwin
Cluestick courtesy of deraadt@, discussed with todd@, mbalmer@, ok ray@.
2008-12-07Document that ethers_aton returns NULL for invalid addresses.Paul de Weerd
Suggested by and ok claudio@, ok jmc@
2008-12-07- man page name is keybound, not keyokJason McIntyre
- returned type is char *, not int from Frederic Culot, documentation/6019 first issue sent upstream (second already fixed)
2008-12-07- use MLINKS for currently enabled drm devicesJason McIntyre
- update SYNOPSIS ok oga
2008-12-07- comment out more stuff currently unsupportedJason McIntyre
- host:port, not host.port ok canacar
2008-12-07Add option to order the pool view by size and number of pages columns.Can Erkin Acar
2008-12-07- getaddrinfo() uses negative values for its error defines, our use of anGilles Chehade
u_int8_t to hold the value leads to invalid checking in runner_batch_resolved(), this lead to a crash in MTA because we assumed a batch had its mx resolved when it had not. while at it, be more strict about errors we don't know and fatal(), it should not happen. ok jacekm@, ok chl@
2008-12-07Warning cleanup including unused variables and shadowed namesCan Erkin Acar
2008-12-07- fix function name in fatal()Gilles Chehade
2008-12-07fix an 11-year-old typo in an if statement; 'null dereference' llvm/clang; ↵Constantine A. Murenin
ok millert
2008-12-07Don't check / reset s->s_msg.datafp where its state is obviously known.Jacek Masiulaniec
2008-12-06Make queue_delete_incoming_message not fatal on ENOENT condition.Jacek Masiulaniec
Also, fix function name in fatals. ok gilles@
2008-12-06command descriptions (.Nd macros) are usually lowercase;Igor Sobrado
fix wording for "ruleset grammar". ok jmc@
2008-12-06the ellipsis allows more than one argument being specified.Igor Sobrado
2008-12-06No need to set dwMaxVideoFrameSize and dwMaxPayloadTransferSize to 0Marcus Glocker
in the negotation routine explicitly, because the whole structure gets bzero'ed before.
2008-12-06Revert this to, due to the ppc intr backout. -moj ok @kettenisMats O Jansson