summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-05-09when demonstrating the correct "double-check" idiom, provide aTheo de Raadt
reminder that the return value is int...
2014-05-09stop using B_AGE, it was effectively retired some time ago.Ted Unangst
2014-05-09disable IO_NOCACHE B_NOCACHE conversion until it works.Ted Unangst
2014-05-09KNF: unify style and reduce indentation in get_line(), no binary changeIngo Schwarze
ok cmp(1)
2014-05-09After entering an invalid three-letter card name, one letter card namesIngo Schwarze
stopped working because the third letter remained in the buffer, incard() skipped the NUL and used the old garbage. Fix this bug reported by pjanzen@, but in a simpler way than he suggested, by just clearing any trailing garbage from the buffer. ok pjanzen@
2014-05-09Various cleanup:Ingo Schwarze
1. Style: Don't use variables as format strings. NetBSD rev. 1.26 (May 23, 2011) joerg@NetBSD via maintainer pjanzen@. 2. Style: Avoid needless pointer arithmetics. NetBSD rev. 1.27 (Oct 13, 2012) dholland@NetBSD via pjanzen@, who also applied some KNF to the indentation while here. 3. End curses before printing fatal error messages; from pjanzen@.
2014-05-08Do not read from index -1 of an array.Ingo Schwarze
NetBSD rev. 1.16 (Oct 13, 2012) by dholland@NetBSD via maintainer pjanzen@.
2014-05-08Format string fixes for m88k; remove -Wno-format from the m88k kernels.Miod Vallat
2014-05-08move reallocarray() to a seperate file so that -portable applicationsTheo de Raadt
can avoid reinventing the wheel ok guenther schwarze
2014-05-08Format string fixes and removal of -Wno-format for landisk kernelsMiod Vallat
2014-05-08Format string fixes and removal of -Wno-format for hppa kernels.Miod Vallat
2014-05-08Update #include list after not-so-recent uvm includes cleanups.Miod Vallat
2014-05-08Format string fixes and removal of -Wno-format for arm kernels.Miod Vallat
2014-05-08Format string fixes for alpha kernels, and remove -Wno-formatMiod Vallat
2014-05-08Fix some potential integer overflows caused by converting a page number intoMark Kettenis
an offset/size/address by shifting by PAGE_SHIFT. Make uvm_objwrire/unwire use voff_t instead of off_t. The former is the right type here even if it is equivalent to the latter. Inspired by a somewhat similar changes in Bitrig. ok deraadt@, guenther@
2014-05-08Replace hand-crafted STRICT_ALIGNMENT with system provided __STRICT_ALIGNMENT.Miod Vallat
Forgotten during yesterday's STRICT_ALIGNMENT cleanup commit.
2014-05-08No longer build vax kernels with -Wno-format.Miod Vallat
2014-05-08Format string fixes.Miod Vallat
2014-05-08Recognize `t' as a valid format modifier for kprintf-style format strings.Miod Vallat
2014-05-08Format string fix in disabled code. Format bus_space_handle_t with %xl,Stefan Fritsch
cast bus_space_tag_t to (u_long)
2014-05-08Enable -Wno-format in the kernel on i386 & amd64Stefan Fritsch
ok jsg@ "go for it" kettenis@
2014-05-08regenMiod Vallat
2014-05-08Remove irrelevant devices from the ramdisk target; spotted by deraadtMiod Vallat
2014-05-08"Server?" -> "HTTP Server?" to allow unambiguous auto-installKenneth R Westerback
handling. Confusion with "NTP Server?" reported by Xavier Claude via misc@. ok rpe@ halex@
2014-05-08fail for unsupported node action/type combinations. Also fail for theReyk Floeter
unsupported mark/marked combination in a single rule. ok andre@
2014-05-08More KNF.Joel Sing
2014-05-08KNF.Joel Sing
2014-05-08Adjust this test contents from path keytype to url keytype to match the name ofAndre de Oliveira
the test file. ok reyk
2014-05-08protip: "It's largely bad style to do (int)sizeof"Ted Unangst
amusingly, theo phrased this with considerably more restraint than i did.
2014-05-08Remove KSSL debug code.Joel Sing
"fire bomb" tedu@
2014-05-08KNF.Joel Sing
2014-05-08Nuke OPENSSL_FIPS - having #ifdefs inside a #ifndef for the same thingJoel Sing
is amusing. ok deraadt@
2014-05-08remove debug prints that snuck in; found by reyk@Bret Lambert
2014-05-08KNF.Joel Sing
2014-05-08Pretty print MIB_ipNetToMediaPhysAddress'es; ok blambertMike Belopuhov
2014-05-08Plug one more xfer leak.Martin Pieuchot
Now that aborting interrupt pipes does not prevent us from freeing the associated xfer, make sure to flag this xfer as "done" even if there's no need to abort it in hardware.
2014-05-08knfectomie.Joel Sing
2014-05-08The pcexmem(4) and pcexio(4) should be attached on LUNA-88K2 only.Kenji Aoyama
Actually, there seems to be no PC-9801 extension board slot on 'original' LUNA-88K. ok miod@
2014-05-08Emergency knfectomie requested by tedu@.Joel Sing
2014-05-08match iked proc.c infrastructure with proc.cBret Lambert
ok reyk@
2014-05-08match relayd proc.c infrastructure with snmpdBret Lambert
okay reyk@
2014-05-08inet(3) -> inet_net(3);Jason McIntyre
2014-05-08Bring back restricted sockets, inadvertantly removed inBret Lambert
previous proc.c update ok reyk@
2014-05-08kill some more VMS ifdefsGiovanni Bechis
ok miod@
2012-10-13import OpenSSL-1.0.1cDamien Miller
2010-10-01import OpenSSL-1.0.0aDamien Miller
2008-09-06import of OpenSSL 0.9.8hDamien Miller
2005-04-29import of openssl-0.9.7g; tested on platforms from alpha to zaurus, ok deraadt@Damien Miller
2014-05-08Sync flags with route.hMartin Pieuchot
2014-05-08Introduce two new route flags: RTF_LOCAL and RTF_BROADCAST.Martin Pieuchot
Nothing use them for the moment, but here is the plan: Since a route lookup is always necessary to output a packet it makes sense to store all the information regarding how the packet should be sent in the routing entry. This will save us some expensive lookups on address lists. But once we have all the information about our addresses in the routing table, we can even use it in the input path with the hope that the number of lookups in the forwarding case can be reduce to one. ok henning@, chris@