summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-03-07add submethod support to AuthenticationMethods; ok and freedback djm@Markus Friedl
2013-03-07Fix return value of wcrtomb() in single-byte locales if the s argument is NULL.Stefan Sperling
wcrtomb() must pretend to store one byte (NUL-terminator) in this case. Patch by Vladimir Tamara Patino. ok guenther
2013-03-07fix atrocious code, do socket -> FILE* conversion correctly, with properMarc Espie
error handling. okay millert@, otto@
2013-03-07Refactor code around route label creation and checking to make it easierKenneth R Westerback
to read. No functional change. ok sthen@
2013-03-07Add ECDSA instructions to ssl(8), with this and DSA's method now generatingStuart Henderson
a CSR first, then a self-signed cert as a separate step, using the -days and -sha256 options in the example. Syncs with style used for RSA here/faq and saves hair pulling if you actually want a CSR and don't notice the "-x509". Tweaks from jmc@, stsp and jung like the separate use of -days.
2013-03-07remove spurious semicolon at end of if statement in vr_watchdog.Stuart Henderson
from oga@bitrig, ok dtucker
2013-03-07Allow a '+' in the MAILTO email adress; from Constantine A. MureninTodd C. Miller
2013-03-07Remove unused ifa_ifwithaf() function.Martin Pieuchot
ok mikeb@, miod@
2013-03-07Remove the IFAFREE() macro, the ifafree() function it was calling alreadyMartin Pieuchot
check for the reference counter. ok mikeb@, miod@, pelikan@, kettenis@, krw@
2013-03-07Remove a couple duplicates entries that snuck in.Philip Guenther
Per POSIX, if confstr() returns zero without setting errno ("no defined value") then print "undefined\n". Don't include a pointless number in the error messasge if confstr() fails. Above pointed out by Andres Perera (andres.p (at) zoho.com) Orgranize the CONFSTR code like the SYSCONF and PATHCONF cases. Don't test for confstr() returning (size_t)-1, as that's not special. Delete lint comments and unnecessary casts.
2013-03-07Correct the delay when programming the short cable fix. It should beBrad Smith
100us, not 100ms. From FreeBSD ok chris@
2013-03-07Rewrite the receive filter handling code and cleanup the ioctl bits.Brad Smith
ok chris@
2013-03-07Oops: confstr()'s return value should include the NUL in its countPhilip Guenther
Problem pointed out by Andres Perera (andres.p (at) zoho.com)
2013-03-07XL_DMACTL is a 32bit register, use the 32bit write macro.Brad Smith
From FreeBSD ok chris@
2013-03-07Use switch statement for determining when to configure the L2 cache.Brad Smith
ok miod@
2013-03-07Reword some wrong comments and some improperly formatted comments and addMike Larkin
information about piglet memory layout. No functional changes.
2013-03-07Sort the CardBus ids.Brad Smith
2013-03-07Fix and simplify determining whether we're using a 8129 or 8139 chipset. OnlyBrad Smith
the 8129 PCI id is a 8129, everything else is a 8139. Allows the D-Link DFE-520TX board to work and would ensure proper determination of the chipset for at least the 8138 based boards (PCI/CardBus). Tested by kirby@ Ok kirby@ sthen@ chris@
2013-03-07repeat test with a style appended to the usernameDamien Miller
2013-03-07reconstruct the original username that was sent by the client, which mayDamien Miller
have included a style (e.g. "root:skey") when checking public key signatures. Fixes public key and hostbased auth when the client specified a style; ok markus@
2013-03-06g/c unused variable (-Wunused)Damien Miller
2013-03-06fatal() when ChrootDirectory specified by running without root privileges;Damien Miller
ok markus@
2013-03-06Account for the size of the allocation when defending the pagedaemon reserve.Bob Beck
Spotted by oga@nicotinebsd.org, with help from dhill@. Fix by me. ok miod@
2013-03-06as done in ospf{,6}d/relayd, sync yyerror in various other daemons withStuart Henderson
that from bgpd, so that it logs to syslog when daemonized.
2013-03-06sync yyerror() with version in bgpd so that it logs to syslog when daemonized.Stuart Henderson
ok florian@
2013-03-06Apply patch from RedHat to address CVE-2013-1667, perl: DoS in rehashing codeJasper Lievisse Adriaanse
For more information please refer to: http://code.activestate.com/lists/perl5-porters/191311/ ok millert@
2009-10-12import perl 5.10.1Todd C. Miller
2003-12-03perl 5.8.2 from CPANTodd C. Miller
2013-03-06When dumping config, just print "passive" for passive interfaces ratherStuart Henderson
than showing hello timers/keys. ok florian@
2013-03-06Fix a bad comparison when calculating the size of the hibernate signatureMike Larkin
block ok deraadt@
2013-03-06legancy -> legacy; From: Chris HettrickJason McIntyre
2013-03-05802.1x enterprise is actually supported but requires external software, soStuart Henderson
update the manual. Pointed out by mlarkin@, ok mlarkin@ brad@ matthieu@
2013-03-05reset pubkey order on partial success; ok djm@Markus Friedl
2013-03-05cross referencing the manual page is better.Igor Sobrado
change suggested and ok'd by jmc@
2013-03-05tweak wording of scanf return value; prompted by Jan Stary; ok jmc@Otto Moerbeek
2013-03-05let whois -P do a query against peeringdb. ok deraadt phessler, feedback jmcStuart Henderson
2013-03-05comment out example code.Igor Sobrado
ok mikeb@
2013-03-05fix program name used in AUTHORS section.Igor Sobrado
ok mikeb@
2013-03-05Mention that if you use a space as the separator in the argumentTodd C. Miller
for the -d option you should quote the argument. Based on a diff from jmc@. OK jmc@
2013-03-05Allied Telesis AT-2916TMike Belopuhov
2013-03-05Track attached softraid disciplines via a queue. This prevents the need toJoel Sing
scan the sparse SCSI targets array and simplifies code. Disciplines are now also shutdown in reverse attach order, making manually stacked softraid volumes somewhat more practical. ok krw@
2013-03-05add a few words to the -r description to avoid ambiguity;Jason McIntyre
issue noted by Ronald F. Guilmette, freebsd docs/176648
2013-03-04Reorder code such that wsdisplay(4) attaches after drm(4).Mark Kettenis
Preparation for framebuffer console support on amd64/i386. tested by many ok mpi@
2013-03-04i missed a list of ciphers that rogier krieger didn't miss. thanks.Jasper Lievisse Adriaanse
2013-03-04Replace the cast to struct in6_ifaddr pointer with the ifatoia6() macro.Alexander Bluhm
No binary change. OK claudio@
2013-03-04When deleting an IPv6 interface address, also remove the prefix andAlexander Bluhm
the cloning route. bug report and test Florian Riehm; original fix sperreault@; OK claudio@
2013-03-04Fix compiler warnings about casts discarding const qualifiers andAlexander Bluhm
comparison between signed and unsigned. No binary change. OK reyk@ joel@ gerhard@
2013-03-04sync with reality, only sha256 checksums are generated for distinfo.Jasper Lievisse Adriaanse
prompted by a mail on ports@ by rogier krieger ok landry@
2013-03-04Add HG20F9 usb ethernet, from Chuck Guzis, ok jsg@Stuart Henderson
2013-03-04syncStuart Henderson