summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-06-14attach CNU-680 to umsm(4)Felix Kronlage
ok jsg@
2010-06-14regen after adding CNU-680Felix Kronlage
2010-06-14add usb device id for edvo device CNU-680Felix Kronlage
ok jsg@
2010-06-14remove policy lookup debug messageReyk Floeter
2010-06-14NAT detection with SPIr is always 0Reyk Floeter
2010-06-14restructure code a bit to move closer to initiator mode:Reyk Floeter
- split responder/initiator- specific code into different functions and use shared functions for common stuff. - first parse the received message and store information in the temporary message struct instead of modifying the ike sa in the parsing code directly.
2010-06-14tidy this file up a bit. reorder a few comments,Thordur I. Bjornsson
fix up prototypes etc. ok oga@
2010-06-14remove the scsi_buf_* functions as these have beenThordur I. Bjornsson
replaced by BUFQ's. OK krw@, dlg@
2010-06-14sync from mirrors.datStuart Henderson
2010-06-14cleanup messages and parsed information correctlyReyk Floeter
2010-06-14add define for saproto 0Reyk Floeter
2010-06-14screen does not have hpa, but we can make do with \r cuf.Marc Espie
fixes flickering under tmux...
2010-06-14log must use ->fMarc Espie
2010-06-14More code for initiator mode (not finished yet)Reyk Floeter
2010-06-13Update awk to May 23, 2010 version. OK miod@Todd C. Miller
2010-06-13Adjust FTP reply codes (in error conditions) to conform to RFC 959.Tobias Stoeckmann
ok millert, schwarze
2010-06-13Prevent a segmentation fault. It could occur when login_getclass fails andTobias Stoeckmann
the key "s/key" is entered with supplied -a or -p option. ok millert (with better error message)
2010-06-13remove obsolete ENVIRONMENT section; from Daniel DickmanJason McIntyre
ok millert
2010-06-13Don't expose typedefs of pgno_t and indx_t in the public header file, moveMartin Hedenfal
them to btree.c. Also don't use exact-width integer types in public btree api.
2010-06-13Fix btree reference counting when opening the database with a fileMartin Hedenfal
descriptor directly using btree_open_fd(). Also wrap referencing in a function.
2010-06-13Fix value clash in btree flags BT_FIXPADDING and BT_NOSYNC.Martin Hedenfal
2010-06-12add missing arg to a printf callJonathan Gray
ok oga@
2010-06-12Add missing arg to a printf call.Jonathan Gray
ok damien@
2010-06-12Add a missing ntohs() around hdr.type. This fixes a segfault asAlexander Bluhm
the area of an ASE LSA is NULL. ok claudio@
2010-06-12Fix an obvious use after free. From ospfd.Alexander Bluhm
ok claudio@
2010-06-12The "dispatch_rtmsg no nexthop" error was emitted in wrong casesAlexander Bluhm
and prevented dynamic route redistribution. Fix the logic bug that was introduced during IPv4 to IPv6 conversion. ok claudio@
2010-06-12Print additional new line after 'Number of Links' in show databaseAlexander Bluhm
router. This separates the router and link blocks like ospfctl. ok claudio@
2010-06-12Print 'Number of Routers' in show database network.Alexander Bluhm
ok claudio@
2010-06-12at line 445 `al' is allocated via `aldap_init' in `client_aldap_open'zinovik
function, but when further in code we might do `goto bad', `al' is not freed with `aldap_close', so plug memory leak on error path tested by jasper@ ok pyr@, jasper@
2010-06-11start with an empty headerMarc Espie
2010-06-11don't call working() in -q mode.Marc Espie
2010-06-11add some infrastructure to support timers and initiator mode later.Reyk Floeter
2010-06-11Restore an unusual XS_SENSE semantic that inadvertantly got lostKenneth R Westerback
in the great re-write. If the scsi device *_interpret_sense() function returns 0 that means there was no error. Fixes restore(8) problems seen on certain tape drives. Found and fix tested by Percey Piper. Suggestions from Matthew Dempsky. Thanks! ok dlg@
2010-06-11Wrap searches in a read-only transaction so it is guaranteed to see aMartin Hedenfal
consistent snapshot of the database. Also fixes a couple of format string errors for long long ints.
2010-06-11Add support for Intel AES-NI and the CLMUL_ instructions, plus a few othersThordur I. Bjornsson
that are needed to omplement accelerated AES (and AES-GCM mode) on newer Intel cores. Diff from Mike Belopuhov. no objections/ok miod@
2010-06-11Implement IP-FORWARD-MIB, ipv4 only for now.Jonathan Gray
ok reyk@ claudio@
2010-06-11tweak the code slightly so we can remove -lsslJonathan Gray
ok reyk@
2010-06-11add wantarray optimization, just reply 1 as soon as we can when we actuallyMarc Espie
don't try to build the list.
2010-06-11fix format, as noticed by marco@Marc Espie
2010-06-11sync from mirrors.datStuart Henderson
2010-06-11Track changes in btree_txn_* API, pass a NULL btree when also passing aMartin Hedenfal
transaction.
2010-06-11Keep returning BT_DEAD if last meta page has the "tombstone" bit set.Martin Hedenfal
2010-06-11print long long int as %lldMartin Hedenfal
2010-06-11Allow functions that accept both a btree and a txn argument to be passed aMartin Hedenfal
NULL btree pointer. In that case the btree is taken from the transaction. If both a btree and txn pointer is passed, make sure the transaction is actually opened on the specified btree.
2010-06-11syncStuart Henderson
2010-06-11various fixes from Daniel Dickman:Jason McIntyre
- clarify sort's various modes of operation - -m is overridden by -C and -c - ordering options should not appear after -k - give -k it's own little section (aw!) discussed with, tweaked by, and ok sobrado millert otto
2010-06-11Append a "tombstone" meta page after a database has been compacted. ThisMartin Hedenfal
allows other processes to pick up the change and re-open the file.
2010-06-11syncStuart Henderson
2010-06-11sync from mirrors.datStuart Henderson
2010-06-10fsck -> check & reorderMarc Espie
(noticed by Vadim Zhukov)