summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-20Add ITUNER USBLCD256x64Aaron Bieber
OK sthen@
2014-03-20Various fixes from Tiago Cunha tcunha _AT_ gmx _DOT_ com:Florian Obser
- const for file and tok - remove \n from err(3) - typo in error message - s/err/errx/ for functions that do not set errno - s/fprintf(stderr,...)/warnx/ Thanks! OK sthen, benno
2014-03-20Simplify a bit of code to make sure even -Wall can see the variablesKenneth R Westerback
are not used uninitialized. As a bonus, make variables the same type as the data they are trying to preserve.
2014-03-20Do not pull <sys/tree.h> unconditionally in <net/if.h>, only the addressMartin Pieuchot
tree and the 80211 nodes need it. ok henning@, mikeb@
2014-03-20Add back various #includes of err.h, unistd.h, ctype.h, ioctl.h toKenneth R Westerback
eliminate multiple 'implicit' declarations introduced by the previous over-zealous #include cleanup. Thanks to to tedu@ for pointing out how -Wall reveals all.
2014-03-20Add several devices we already have defined in usbdevs and are also known to beandre
UPSes. (forced commit due to previous empty commit message) ok mpi@ sthen@
2014-03-20*** empty log message ***andre
2014-03-20- add a comment pointing to http://wiki.nginx.org/Pitfalls, it has importantStuart Henderson
information for people writing nginx configuration. - remove commented-out "ssl_protocols SSLv3 TLSv1" line; nginx default is "SSLv3 TLSv1 TLSv1.1 TLSv1.2", so uncommenting this line removes desirable protocols ok robert@
2014-03-20revert rev. 1.115Sebastian Benoit
In case imcp_reflect() is called without a given source address do not try to find a matching address by iterating over a global list and always use the routing table. This breaks icmp echo replies (and maybe more) on machines with >1 ip "reverting is safer and make it clear that this function needs more love" ok florian@, mpi@ for the revert
2014-03-20Kill NFS_BOOT_GATEWAY, ok deraadt@Martin Pieuchot
2014-03-20Cope with recent signify(1) changes and simplify getting/checking the sets.Antoine Jacoutot
ok sthen@ rpe@
2014-03-20- use more portable -o in examples, requested by millert and sobradoJason McIntyre
- tweak STANDARDS to make the note about -and and -or a little clearer - remove some gnu clutter ok millert sobrado
2014-03-20Add some missing dobeeps.Mark Lumsden
ok florian@
2014-03-20Enable ps regression testsLawrence Teo
2014-03-20Basic tests for ps(1) to check for valid/invalid keywordsLawrence Teo
2014-03-20Move the "minflt" entry to the correct spot in the var array so that allLawrence Teo
keywords are sorted in ascending order again. This fixes a bug where ps(1) thought that "minflt" was an invalid keyword. This bug was introduced when the "maxrss" keyword was accidentally added to the array after "minflt" instead of before, so the bsearch(3)-based keyword lookup could never find "minflt". ok deraadt@ guenther@ millert@ tedu@
2014-03-20Remove currently unimplemented macros from the lists of used-definedIngo Schwarze
macros to be cleared during .Dd and .TH because clearing them at that point defeats the purpose of backup implementations provided in the manual page itself, some of which _do_ work with mandoc(1). While here, add the new .%C macro to the list to be cleared.
2014-03-20Add back #include <stdlib.h> so strtod() works better. Fixes fdisk onKenneth R Westerback
sparc64 at least. Found when deraadt@ complained about loongson miniroot blowing up.
2014-03-19remove userland ppp bits;Jason McIntyre
2014-03-19Register pure .so pages as mlinks, not as mpages.Ingo Schwarze
This doesn't affect /usr/share/man, but improves /usr/X11R6/man: * Eliminates multiple apropos(1) output for such pages. * Reduces X11R6 database size from 450 kB to 240 kB (-47%). * Reduces X11R6 database build time from 1.68s to 1.00s (-40%).
2014-03-19Without the MPARSE_SO option, if the file contains nothing but aIngo Schwarze
single .so request, do not read the file pointed to, but instead let mparse_result() provide the file name pointed to as a return value. To be used by makewhatis(8) in the future.
2014-03-19Generalize the mparse_alloc() and roff_alloc() functions by givingIngo Schwarze
them an "options" argument, replacing the existing "inttype" and "quick" arguments, preparing for a future MPARSE_SO option. Store this argument in struct mparse and struct roff, replacing the existing "inttype", "parsetype", and "quick" members. No functional change except one tiny cosmetic fix in roff_TH().
2014-03-19use smtpd man pages by default. ok deraadt jmcTed Unangst
sendmail.8 note by jmc
2014-03-19When BatteryPresent flag is not set, invalidate battery-dependent sensors.andre
suggested by deraadt@ ok mpi@
2014-03-19syncTheo de Raadt
2014-03-19spacingTheo de Raadt
2014-03-19regenMiod Vallat
2014-03-19Tell the manpage machinery to not output Xr to hd(4/vax) in MAKEDEV.8, sinceMiod Vallat
such a manpage does not currently exist. Requested by jmc@
2014-03-19no more rcp;Jason McIntyre
2014-03-19missing -B in second usage lineFlorian Obser
pointed out by jmc@, thanks!
2014-03-19Thulsa Doom says "Infidel Defilers. They shall all drown in lakes of blood."Ted Unangst
2014-03-19there is no need for rcp anymoreTed Unangst
ok deraadt millert
2014-03-19Remove #ifdef FreeBSD.Martin Pieuchot
2014-03-19Since in{,6}_ifdetach() take care of removing the IPv4/6 addressesMartin Pieuchot
from the per-ifp list when an interface is destroyed/removed the only address left on the list at this point is the link-layer one. So remove the custom loop and its associated hack for the link-layer address and simply call if_free_sadl(). As a side effect, this should fix any scenario where if_alloc_sadl() is called multiple time since the first link-layer address allocated was never removed from the per-ifp list.
2014-03-19Removing devices supported by upd(4) from quirks.andre
ok mpi@
2014-03-19remove references to hp300 pages, recently removed; ok miodJason McIntyre
2014-03-19Unify ipsec.conf(5)'s copy of the text dealing with multiline comments,Stuart Henderson
this was missed when unifying text in the other parse.y parsers (see e.g. pf.conf.5 r1.495). Noticed in a misc@ post by zeloff at zeloff/org.
2014-03-19Stop abusing the rcvif pointer to pass wireless nodes down to theMartin Pieuchot
driver start routines. Instead add & use a pointer in the pkthdr since we don't want the overhead of using a mbuf_tags(9). claudio@ pointed out that other subsystems might want to use this pointer too, so here's a new cookie! ok claudio@, mikeb@, deraadt@
2014-03-19upd(4) attaches at uhidev(4), ok andre@Martin Pieuchot
2014-03-19Enable upd(4) on three archs to get it tested, requested by deraadt@.Martin Pieuchot
2014-03-19Add a temporary hack to let a subdriver claim all the reportIDs ofMartin Pieuchot
a device. This should be removed once all the drivers attaching to uhidev(4) are converted. ok andre@, sthen@
2014-03-19It's still safe to assumed 'signed' existsPhilip Guenther
2014-03-19It's safe to assumed 'signed' existsPhilip Guenther
2014-03-19It's been a quarter century: pre-ANSI C is deadPhilip Guenther
2014-03-19Pull in FreeBSD r37363 and r37887:Philip Guenther
-- Sync timestamp changes for inodes of special files to disk as late as possible (when the inode is reclaimed). Temporarily only do this if option UFS_LAZYMOD configured and softupdates aren't enabled. UFS_LAZYMOD is intentionally left out of /sys/conf/options. This is mainly to avoid almost useless disk i/o on battery powered machines. It's silly to write to disk (on the next sync or when the inode becomes inactive) just because someone hit a key or something wrote to the screen or /dev/null. -- Made lazy syncing of timestamps for special files non-optional. -- Also, include support in 'pstat -v' to display the IN_LAZYMOD flag. ok tedu@ millert@
2014-03-19no rest for the wicked. increase user blf logrounds default to 8(+2).Ted Unangst
increase root to 9(+1). ok deraadt (and a thank you to miod for helping to reduce the set of architectures harmed by this)
2014-03-19consolidate the base64 code in one place, and remove inadequate test codeTed Unangst
2014-03-19right or wrong, bcrypt() is declared in pwd.h, not unistd.hTed Unangst
2014-03-19Remove lexical $_ from libtool in preparation for perl 5.18afresh1
OK and additional changes from espie@
2014-03-19you are still welcome to install from tape, but as befits an elite masterTed Unangst
of unix arcana, we will not condescend to tell you how. why spoil the fun?