summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-09-03Resolve matching rules from superior attribute types at schema load timeMartin Hedenfal
instead of when each attribute is validated.
2010-09-03add an EXIT STATUS section for /bin;Jason McIntyre
2010-09-03Implement attribute syntaxes from RFC4517. This adds validation to the mostMartin Hedenfal
common attribute types. Specialized attribute types like Delivery Method or Teletex Terminal Identifier are recognized for completeness, but not validated.
2010-09-03Make 'file' an argument in -f description.lum
ok jmc@
2010-09-03Rename RCSNUM's fd to rf_fd, complies to other variable names andTobias Stoeckmann
OpenRCS. ok xsa, zinovik
2010-09-03Make second parameter of poll() the correct type. Removes compile warning.lum
advice and ok martynas@
2010-09-02Switch ECDSA default key size to 256 bits, which according to RFC5656Christian Weisgerber
should still be better than our current RSA-2048 default. ok djm@, markus@
2010-09-02test different key types (dsa, rsa, ecdsa) and sizes for loginMarkus Friedl
and host keys; print time used for each iteration; ok djm@
2010-09-02unbreak ControlPersist=yes for ControlMaster=yes; ok djm@Markus Friedl
2010-09-02permit -b 256, 384 or 521 as key size for ECDSA; ok djm@Markus Friedl
2010-09-02NBR_STA_SESSION, NBR_STA_UP, and NBR_STA_ACTIVE represent all the sameClaudio Jeker
group of states (all but NBR_STA_DOWN). Clean up this confusion and remove NBR_STA_UP and NBR_STA_ACTIVE. OK michele@
2010-09-02remove trailing spaces and tabs from source code; no binary changesIgor Sobrado
(verified by both sthen@ and me). ok sthen@; "just commit it" claudio@
2010-09-02remove trailing spaces and tabs; no binary change.Igor Sobrado
written with help from henning@, who suggested ensuring that there are no changes in the digests for object files, thanks! ok henning@
2010-09-02the page_length field in the vpd page header is 2 bytes, not 1.David Gwynne
ok krw@ marco@ matthew@
2010-09-02don't attempt to enqueue routing messages on sockets marked SS_CANTRCVMOREBret Lambert
ok claudio@
2010-09-02remove trailing whitespace.Igor Sobrado
2010-09-02Inline bufq_impl_disksort and bufq_impl_fifo's definitions intoMatthew Dempsky
bufq_impls. Also, make bufq_impls const. ok dlg@
2010-09-02rcsnum_parse() allocates already an RCSNUM struct, so it's not needed toTobias Stoeckmann
copy it into a newly allocated one (which is even a memory leak). ok zinovik
2010-09-01Don't give xs->resid an invalid value (xs->datalen * st->blksize)Kenneth R Westerback
inside st_interpret_sense() and then exit without making sure it's set back to <= xs->datalen. Fixes 'done < 0; strategy broken' panics when un-tar'ing /cvs from my ahci DAT tape drive. ok dlg@ more-or-less-ok matthew@
2010-09-01prefer ECDH in a 256 bit curve field; prompted by naddy@Damien Miller
2010-09-01After all escape sequence processing, check for being beyond the lastNicholas Marriott
column and and clear VTFL_LASTCHAR if so. This fixes the case where an escape sequence (originally noticed with DECSTBM) moves the cursor and doesn't reset the flag - if it was set, there would be a spurious line feed on the next input. ok miod
2010-09-01Simplify xterm modifier detection by treating as a bitmask + 1. SpottedNicholas Marriott
by and diff from Emanuele Giaquinta.
2010-09-01Reset running jobs when the status line is enabled or disabled as well,Nicholas Marriott
some people have it bound to a key.
2010-09-01Do not panic in parsedisk() for ``second class'' block devices (which we can'tMiod Vallat
root off), return NULL instead.
2010-09-01There is no point doing wakeups in bufq_done() unless we're actually in theMark Kettenis
process of quiescing I/O. ok dlg@
2010-09-01Clarify why we can walk the list of bufqs without holding a mutex with aMark Kettenis
comment.
2010-09-01Fix typo in vgafb_mmap(), causing a comparison to always fail. ok kettenis@Miod Vallat
2010-09-01Add missing leading string quote character in attribute type description.Martin Hedenfal
Caused syntax errors when parsing schema from the subschema.
2010-09-01Move generic imsg/libevent glue to a separate file.Martin Hedenfal
with eric@ at c2k10
2010-09-01some very minor tweaks to bring us in line with mdoclint -r1.12 andJason McIntyre
mdoclint.1 -r1.2; some minor os-specific differences remain
2010-09-01pick up ECDSA host key by default; ok djm@Christian Weisgerber
2010-09-01Oracle has re-licensed sunrpc under a three-clause BSD license.Todd C. Miller
Update our sources appropriately. OK deraadt@ jsg@
2010-09-01s/lfib/fib/ for more consistency with the other routing ctl tools.Claudio Jeker
While I also made the code more consistent the most noticable change is the rename of the commandline arguments for fib coupling and viewing. OK michele@
2010-09-01s/lfib/fib/ for more consitency with the other routing daemons.Claudio Jeker
This started manly because of ldpctl beeing inconsistent and me misstyping lfib almost every time. OK michele@
2010-09-01Clean-up the spl dance around suspend/resume. Okay miod@.Paul Irofti
2010-09-01Do not use FP arithmetic. Variation on a diff from Mike Belopuhov some time ago.Martin Hedenfal
2010-09-01Failure to attach a pcmcia driver could leave the function to be disabledMiod Vallat
after config_found() returns; check for this and do not invoke pcmcia_ccr_read() on a disabled function in the following DPRINTF. No change for kernels without option PCMCIADEBUG.
2010-09-01- add a few moreJasper Lievisse Adriaanse
2010-09-01Remove unused variable: linkfaillum
ok gilles@
2010-09-01Let non-ykbec kernels link again.Miod Vallat
2010-09-01Restore compilability after bufq changesMiod Vallat
2010-09-01ata information vpd page idDavid Gwynne
2010-09-01make struct bufq a member of the softc for devices that use it,David Gwynne
rather than it being a pointer to something that needs to be allocated at attach. since all these devices need a bufq to operate, it makes sense to have it allocated as part of the softc and get bufq_init to just initialise all its fields. it also gets rid of the possibility that you wont be able to allocate the bufq struct during attach, which is something you dont want to happen. secondly, it consistently implements a split between wrapper functions and the per discipline implementation of the bufq handlers. it consistently does the locking in the wrappers rather than doing half in the wrappers and the other half in the implementations. it also consistently handles the outstanding bufq bq pointer in the wrappers. this hides most of the implementation inside kern_bufq.c. the only stuff left in buf.h is for the bits each implementation needs to put inside struct buf. tested by thib@ krw@ and me ok thib@ matthew@ no objection from krw@
2010-08-31Add missing prototype.Nicholas Marriott
2010-08-31syncStuart Henderson
2010-08-31add id for BCM5719; from Linux tg3 driver via BradStuart Henderson
2010-08-31small text tweak to accommodate previous;Jason McIntyre
2010-08-31put .Os in the right place;Jason McIntyre
2010-08-31styleTobias Stoeckmann
2010-08-31Removed ra_uid, which was supposed to save the uid of a delta's author.Tobias Stoeckmann
Is not used and not useful. ok xsa, zinovik