summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-01-18even in @option always-update, normal dependency comparison should stillMarc Espie
occur (and thus we shouldn't downgrade packages if the version changes)
2010-01-18don't bother checking for exec and displaying them if we're not verboseMarc Espie
and we have -D update on.
2010-01-18s/long long unsigned/unsigned long long/, from tim via portableDarren Tucker
2010-01-17Correct and clarify ssh-add's password asking behavior.Ted Unangst
Improved text dtucker and ok jmc
2010-01-17strcpy/strncat/sprintf --> strlcpy/strlcat/snprintfCharles Longeau
ok jakob@
2010-01-17Backport bug fix from upstream.Charles Longeau
Bug found by sthen@ ok sthen@ ian@
2010-01-17Remove dead assignment and newly created unused variable.Charles Longeau
Found by LLVM/Clang Static Analyzer. ok otto@ krw@ tedu@
2010-01-17Remove dead assignment and newly created unused variable.Charles Longeau
Found by LLVM/Clang Static Analyzer. ok tedu@ krw@
2010-01-17add a printer for IPV6CP (IPv6 Control Protocol); ok sthen@Christian Weisgerber
2010-01-17* remove a nonsensical print statement left over since antiquityChristian Weisgerber
ok yasuoka@ * add many missing truncation checks and don't output control characters to the terminal ok sthen@
2010-01-17add template nsd.conf (with examples)Jakob Schlyter
2010-01-17regen with {autoconf,autoheader}-2.62Jakob Schlyter
2010-01-17use --with-chrootJakob Schlyter
2010-01-17add --with-chroot option to set default chroot directoryJakob Schlyter
2010-01-17While resampling, if input samples are available but outputAlexandre Ratchov
is blocked don't start processing input. Similarly don't produce output if input is blocked. This is to ensure that to each output block corresponds exactly one input block. This is necessary for full-duplex clients using block-based i/o and very small buffers.
2010-01-17fix quality degradation when resamplingAlexandre Ratchov
2010-01-17default output file ends in ".dat", not ".out";Ingo Schwarze
reported by Lars Nooden <lars dot curator at gmail dot com> while here, - change .Pa .dat to .Sy .dat in one place for uniformity and to avoid ambiguity - fix the files section, too committing right away because this is not installed by default, and unstr(8) is not even built by default...
2010-01-17even better messagesMarc Espie
2010-01-17remove unintentionally added fileJakob Schlyter
2010-01-17use Carp directly, it it very inexpensive actually, since it's been rewrittenMarc Espie
to be just a very small stub that loads Carp::Heavy on demand. Also, stop wrapping messages in "Expected", doesn't give us anything. Finally, make RequiredBy calls be carp, so that we actually know where they fail...
2010-01-17add l2tpDavid Gwynne
2010-01-16Merge db_stack_trace_print() and stacktrace() logic, and have the formerMiod Vallat
invoke the latter to avoid duplicating code. Fix the logic by looking for `sd' instructions for register saves only, and read the whole 64-bit value then. Makes the backtraces less wrong.
2010-01-16Fix types so that the upper 32 bits of addresses of branches are correct.Miod Vallat
2010-01-16don't transmit MIDI active sensing messages, because theyAlexandre Ratchov
cannot be merged.
2010-01-16when closing the device, delete its MIDI end, if it has no writers.Alexandre Ratchov
2010-01-16add _nsdJakob Schlyter
2010-01-16run as user _nsdJakob Schlyter
2010-01-16add user/group for nsd; ok nick@Jakob Schlyter
2010-01-16Remove dead assignment and newly created unused variable.Charles Longeau
Found by LLVM/Clang Static Analyzer. ok tedu@ thib@
2010-01-16rename bluetooth coexistence flags. no binary change.Damien Bergamini
2010-01-16Enable DC calibration and disable crystal calibration onDamien Bergamini
Centrino Advanced-N 6250 parts.
2010-01-16When allocating from the item header pool, we can't sleep, as we may be ↵Ted Unangst
holding a mutex which won't be released. From Christian Ehrhardt. While here, fix another buglet: no need to pass down PR_ZERO either, as noticed by blambert@.
2010-01-15syncTodd T. Fries
2010-01-15Keep in memory whether the socket is writable. This way sio_revents()Alexandre Ratchov
can return POLLOUT (if requested), even the handle was not writable when sio_pollfd() was called but become writable somewhere in the code path of sio_revents(). This should improve stability of programs using very small buffers.
2010-01-15*** empty log message ***Alexandre Ratchov
2010-01-15Fix resampling algorithm to always produce integer block sizes.Alexandre Ratchov
2010-01-15rename zonec to nsd-zonecJakob Schlyter
2010-01-15initJakob Schlyter
2010-01-15NSD v3.2.4Jakob Schlyter
2010-01-15Replace pool_get() + bzero() with pool_get(..., PR_ZERO).Charles Longeau
With input from oga@ and krw@ ok oga@ krw@ thib@ markus@ mk@
2010-01-15syncIgor Sobrado
2010-01-15Add support to sysconf(3) for the variables _SC_NPROCESSORS_CONF andStuart Henderson
_SC_NPROCESSORS_ONLN, implemented by AIX/Tru64/Solaris/Linux/SCO/FreeBSD/NetBSD. Bump libc minor. From Brad, ok deraadt@ guenther@ (File missing from previous commit, pointed out by johan@ - thanks!)
2010-01-15add `Logitech Webcam C200' to the list of supported uvideo(4) devices.Igor Sobrado
ok sthen@
2010-01-15unusedMarkus Friedl
2010-01-15Add support to sysconf(3) for the variables _SC_NPROCESSORS_CONF andStuart Henderson
_SC_NPROCESSORS_ONLN, implemented by AIX/Tru64/Solaris/Linux/SCO/FreeBSD/NetBSD. Bump libc minor. From Brad, ok deraadt@ guenther@
2010-01-15Oops. Respect the various IGNORE flags when not in SCSIDEBUG mode.Kenneth R Westerback
Should quieten booting again. And thus ends n2k10.
2010-01-15Abstract and merge the manual buf queue manipulating functions intoKenneth R Westerback
one place for easier debugging and maintenance. No intended functional changes. ok dlg@
2010-01-15Restore XS_BUSY delay behaviour for buf i/o. Same as for sync path.Kenneth R Westerback
ok dlg@
2010-01-15Address family for UNIX domain socket was mistakenly specified asYASUOKA Masahiko
AF_INET. It should be AF_UNIX.
2010-01-15Reset SIGTERM to SIG_DFL before executing ssh, so that even if sftpPhilip Guenthe
inherited SIGTERM as ignored it will still be able to kill the ssh it starts. ok dtucker@