summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-11-11Convert and enable CMS manuals.Ingo Schwarze
Already some time ago, bcook@ said these can be installed.
2011-04-24Here comes the easter bunnytils 2.17 (the last version released against aMiod Vallat
licence mere mortals can understand the terms of); will be connected to the build on an arch-by-arch basis. Testsuites and generated files have been intentionnaly omitted from this import. Peer pressure and ok from at least drahn@ pirofti@ deraadt@
2010-10-01import OpenSSL-1.0.0aDamien Miller
2004-05-17import binutils 2.14 (excluding testsuites, .info files, and .po files)Dale Rahn
2003-11-25cxxfilt is now a separate program, split from libibertyMarc Espie
(still calling the demangler in libiberty). Grab the version from binutils-2.14
2015-11-11Use warn/warnx here too.Todd C. Miller
2015-11-11Remove bogus DST code. mktime() handles DST automatically whenTodd C. Miller
tm_isdst is set to -1.
2015-11-11Niether cron nor crontab need flock permission.Todd C. Miller
2015-11-11Use warn/warnx where sensible and add fatal/fatalx wrappers forTodd C. Miller
err/errx that unlink atfile as needed. OK deraadt@
2015-11-11Remove obsolete utime() call. It predates the use of a socket toTodd C. Miller
prod cron into checking the spool dir.
2015-11-11Fix spool dir mode check to avoid extraneous chmod() calls.Todd C. Miller
2015-11-11bottom end of spamdb is just "stdio rpath wpath"Theo de Raadt
originally from ricardo mestre, but diff was cut down a bit
2015-11-11Remove the superfluous typedef uvm_flag_t (unsigned int). Also, fix anmmcc
associated mistake in the uvm manpage. Suggested by and ok tedu@
2015-11-11Display full disk size when editing GPT, not the truncated MBR size. DisplayKenneth R Westerback
'disk too large' message only when no GPT is found. Problems found, fix tested and ok naddy@.
2015-11-11needs pledge "getpw" alsoTheo de Raadt
2015-11-11Use fstatat(), openat() and unlinkat() when operating on files inTodd C. Miller
the at queue so we don't need to chdir to the queue dir. OK guenther@
2015-11-11For "crontab -u user -e" change the euid for the mkstemp() callTodd C. Miller
instead of calling fchown() after the fact. Fixes a pledge() issue. OK semarie@
2015-11-11pledge "stdio rpath wpath cpath fattr proc exec tty" seems to work.Theo de Raadt
there are a few system, popen, fork... ok florian
2015-11-11Remove an XXX that no longer makes sense, rt_ifp is now always the sameMartin Pieuchot
as rt_ifa->ifa_ifp.
2015-11-11Store the index of the lo0 interface instead of a pointer to itsMartin Pieuchot
descriptor. Allow to get rid of two if_ref() in the output paths. ok dlg@
2015-11-11Kill useless IFQ_POLL().Martin Pieuchot
ok dlg@
2015-11-11Store an interface index instead of a pointer that's never dereferenced.Martin Pieuchot
Get rid of an if_ref()/if_put() dance. ok dlg@
2015-11-11Clear the mini buffer once a question has been displayed. ok jasper@Mark Lumsden
2015-11-11Correct several DT_foo (tag id) vs DF_* (flag bit) errorsPhilip Guenther
ok deraadt@ kettenis@
2015-11-11the ramdisk more(1) works with pledge "stdio rpath tty"Theo de Raadt
2015-11-11improve PEEK/POKE macros: better casts, don't multiply evaluateDamien Miller
arguments; ok deraadt@
2015-11-11exit on pledge failure, oopsTheo de Raadt
2015-11-11fix pledge error messageTheo de Raadt
2015-11-11ktrace vnodes do not need to be opened with FREAD, as they areTheo de Raadt
only written to. (Will keep an eye out for NFS surprises) ok guenther
2015-11-11exit if pledge failsTheo de Raadt
2015-11-11claudio twice told me pledge "stdio rpath dns" is probably enough.Theo de Raadt
He'll test it next time he builds...
2015-11-11exit() after perror() for pledge failure. Perhaps this got introducedTheo de Raadt
as a test idiom, either when pledge was young or during the transition to strings.... dunno
2015-11-11mark ehci_intr() as IPL_MPSAFE here as wellJonathan Gray
ok mpi@
2015-11-11replace the ifqueue used for the pp_cpq with an mbuf_queue.David Gwynne
2015-11-11remove prototypes for long-gone s/key support; ok dtucker@Damien Miller
2015-11-11use time_uptime instead of time_second.David Gwynne
this avoids wall clock jumps skewing the idle times.
2015-11-11creat() -> open equiv; from Frederic NowakTheo de Raadt
2015-11-10update NAME section to include all documented functions,Jason McIntyre
or otherwise change Dt to reflect the name of an existing function; feedback/ok schwarze
2015-11-10syncTheo de Raadt
2015-11-10If realpath() fails just try the original path.Nicholas Marriott
2015-11-10Handle absolute paths properly, and don't use resolved path inNicholas Marriott
realpath() fails.
2015-11-10syncStuart Henderson
2015-11-10remove stray { }Stuart Henderson
2015-11-10syncStuart Henderson
2015-11-10add /dev/vmm, req'd by and ok mlarkin@Stuart Henderson
2015-11-10Document tzsetwall(). OK schwarze@ jmc@Todd C. Miller
2015-11-10Fix typos in commentsTim van der Molen
2015-11-10In bge_reset(), after figuring out which register access routines to useMiod Vallat
depending upon the chip capabilities, use it everywhere instead of hardcoding one call to bge_writemem_ind() by mistake; this unbreaks the BCM5704 A3 found on some xserve G5 (RackMac3,1). Also tested on a few other bge(4) chip models by jmatthew@ (5703X, 5714), mpi@ (5780), naddy@ (5761) and me (5701). ok dlg@
2015-11-10The window accessible with BGE_MEMWIN_{READ,WRITE} only spans 32KB, soMiod Vallat
program it as such and not as a 64KB window; fortunately none of the current users of these macros would cross a 32KB boundary. ok dlg@
2015-11-10Define pmap_nested() here too, since we define PMAP_EXCLUDE_DECLS for the sakeMiod Vallat
of <uvm/uvm_pmap.h>.