summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-08-31have the timespec arguments match in case those of time_arg;Jason McIntyre
2011-08-31Copy description of the -t option and its argument with revised textPhilip Guenthe
from the touch(1) manpage after much discussion with jmc@ and miller@
2011-08-31Allow dired mode to open files regardless of characters inlum
filename, from Henri Kemppainen. Tested, reviewed and a tweak each from Loganaden Velvindron and myself. ok jasper@
2011-08-30Same fix as 'touch': with the -t option, when the year is specifiedPhilip Guenthe
but the century isn't, the century is 1900 if year >= 69; otherwise it's 2000. (With 32bit time_t, this does't affect any working usage.) ok millert@
2011-08-30sync after recent java.port.mk changeJasper Lievisse Adriaanse
2011-08-30Call free() into ramqueue_remove_{batch,host,message,envelope}() instead of ↵Charles Longeau
just after the function call. While there, also include stats counters into their respective function. ok gilles@
2011-08-30regenMartin Pieuchot
2011-08-30Add another GeForce 8400 GSMartin Pieuchot
2011-08-30in column lists, enforce the following ordering:Jason McIntyre
.Bl -column header1 header2 ... <Bl flags> mixing things up confuses mandoc, and adding flags in can screw up the list. this hopefully just makes things a bit safer (and more consistent). (one more bit of work left and all column lists should format how we want)
2011-08-30remove some pointless Pp/-compact combinations; either ingo or kristapsJason McIntyre
will update mandoc repo
2011-08-30remove unused headerCharles Longeau
ok gilles@
2011-08-30Another memory leak from Tiago Cunha.Nicholas Marriott
2011-08-30Plug memory leak, from Tiago Cunha.Nicholas Marriott
2011-08-30fix format stringCharles Longeau
ok gilles@
2011-08-30Don't OR the VID, we want the whole TCI, this makes vlanprio (PCP/CF)Christiano F. Haesbaert
available to our network stack. ok mcbride naddy henning
2011-08-30Make the code match the manpage and POSIX spec when the year is specifiedPhilip Guenthe
but the century isn't: century is 1900 if year >= 69; else 2000 ok millert@
2011-08-30Make ps -N/-M work again by correcting kernel vs user addressPhilip Guenthe
handling in the FILL_KPROC() macro. Problems pointed out by Martin Pelikan (martin.pelikan at gmail.com)
2011-08-30Document a "once" filter option used to create one shot rules.Mike Belopuhov
ok henning, mcbride, jmc
2011-08-30One shot rules can be used in pf.conf by specifying a "once" filter option.Mike Belopuhov
ok henning, mcbride
2011-08-30Add support for one shot rules that remove themselves from an activeMike Belopuhov
ruleset after match. In case this is the only rule in the anchor, the anchor will be destroyed automatically after the rule is matched. This is an extremely handy technique for firewall proxies. ok henning, mcbride
2011-08-29cast all printed time_t to long long int, and change format string accordingly.Charles Longeau
ok gilles@
2011-08-29remove unused fileCharles Longeau
ok gilles@
2011-08-29Return of the long missing powerpc interrupt rewrite. Was working forDale Rahn
several weeks before release on macppc, socppc bugs just fixed.
2011-08-29add missing header needed by signal()Charles Longeau
ok gilles@
2011-08-29No need to discourage xz distfiles because of sparc.Matthew Dempsky
ok naddy@, espie@
2011-08-29protect sc->sc_state access and ncr53c9x_sched() call with splbio inMiod Vallat
ncr53c9x_poll(). Fixes a race causing *some* drives to trigger a panic in ncr53c9x_sched() at attach time on vax. ok dlg@ krw@
2011-08-29as requested by Tomas Bodzar, remove the reference to the non-existentJason McIntyre
mount_portal(8): although i've just gone on record to say the change is pointless, he has correctly pointed out that it leads to a dead link in the online man pages.
2011-08-29Only provide FLT_EVAL_METHOD for C99. Add missing DECIMAL_DIG for C99.Mark Kettenis
ok guenther@
2011-08-29Update firmware to the latest version available from Myricom (1.4.53a).David Gwynne
via freebsd, tested locally in production for a week or so.
2011-08-29Update to tzdata2011i from elsie.nci.nih.govTodd C. Miller
2011-08-29dont use a semaphore (which doesnt block interrupts in the criticalDavid Gwynne
section) to protect the completion ring. mpii_poll can be in the middle of the critical section when an interrupt is generated, but because something is already in the critical section the isr cant clear the condition causing the interrupt and you spin forever entering the isr and being forced to exit it without doing any work by the semaphore. this moves to protecting the completion ring with a vanilla mutex. work taken off the ring is stuck on local lists in the isr to be completed outside the mutex in case a completion path issues a polled command which will try to call the isr which tries to mutex_enter while the previous call on the stack would be holding the mutex... this diff is large because of the list changes needed to support the local lists in mpii_intr. issue found by bluhm@ and debugged by Christian Ehrhardt
2011-08-29In dired mode, make point move up and down first characterlum
of file name. Also add some missing keybindings. Initial diff and numerous revisions from Loganaden Velvindron, contributions from Henri Kemppainen and myself. Much testing done by Nima Hoda. ok jasper@
2011-08-29regenMike Belopuhov
2011-08-29add gpsmap 62sMike Belopuhov
2011-08-29Test that reverse splicing timeout does not affect forward splicing.Alexander Bluhm
2011-08-28remove redundant final paragraph of STANDARDS: it merely repeats what hasJason McIntyre
already been documented and, worse, is difficult to understand unless you know that it is tied to the previous paragraph; ok guenther
2011-08-28Clear bounce envelope structure, to avoid wrong use when ↵Charles Longeau
bounce_record_message() returns 0. Initial report from me, tweak from gilles@ ok gilles@
2011-08-28Use the correct terminology, replace the term "entry" with the term ↵aschrijver
"attribute" where applicable. OK martinh@ pyr@
2011-08-28Minor cleanup.Alexander Bluhm
2011-08-28Allow splice make regress to run with and without obj directory.Alexander Bluhm
2011-08-28Add support for the netid.byname YP map. This map is used by getgrouplist(3),aschrijver
which is used by (amongst other things) initgroups(3) to set the supplemantary groups on login. OK pyr@
2011-08-28lockmgr() wants to use a different address for the wchan when drainingPhilip Guenthe
the lock, but a change in member ordering meant it was using the same address. Explicitly use different members instead of mixing address of member and address of the lock itself. ok miod@
2011-08-28fix pasto in strlcpy() truncation testGilles Chehade
2011-08-27typoGilles Chehade
2011-08-27initial support for a session-time filtering APIGilles Chehade
currently only HELO/EHLO, MAIL, RCPT are supported, however ... I have voluntarily disabled filters at smtpd.conf level so people don't play with it until the API has stabilized a bit discussed with several people in private, no one opposed the feature
2011-08-27Under certain circumstances iked can be tricked to bypass a signatureMike Belopuhov
verification caused by the incorrect check of the EVP_VerifyFinal return value. Issue was discovered and reported by Justin Ferguson, justin-dot-ferguson-at-ioactive.com. Thanks! While here, check for HMAC_* return values. ok jsg, markus
2011-08-27the order of packinglists has been fixed for years by now, so it's noMarc Espie
longer necessary to look for @arch for "new" packing-lists. Optimize a bit more for @pkgpath since @wantlib/@depend mean it's over.
2011-08-26Be sure to write to the 7990 address register between two consecutive readsMiod Vallat
of the data register, while waiting for the chip initialization to complete. This seems to prevent spurious disappearance of le0 on some systems.
2011-08-26Be sure not to try to match lcg, and to bail out early in cnprobe as well,Miod Vallat
if we are running on a KA45 system. These share the KA48 board type but, unlike KA48, can not sport frame buffers. Prevents a bogus lcg device from attaching on KA45, and also repairs console operation if the S3 switch is down (console on serial #0).
2011-08-26Make vsbus_search() return the value of the cf_match function it is a wrapperMiod Vallat
for, instead of zero. Makes verbose autoconf output meaningful again.