summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-08-10Only need <stdint.h> and not all of <inttypes.h> herePhilip Guenther
2014-08-10Only need <stdint.h> and not all of <inttypes.h> herePhilip Guenther
2014-08-10Only need <stdint.h> and not all of <inttypes.h> herePhilip Guenther
2014-08-10Only need <stdint.h> and not all of <inttypes.h> herePhilip Guenther
2014-08-10Fix the length check for reinjected ICMP packets: sizeof(struct icmp) isLawrence Teo
28 but an ICMP packet can be as small as 8 bytes (e.g. an ICMP echo request packet with no payload), so check against ICMP_MINLEN instead. Prior to this fix, divert(4) would erroneously discard valid ICMP packets that are shorter than 20 bytes. ICMPv6 is not affected, so this change applies to ICMP over IPv4 only. ok florian@ henning@
2014-08-10Format time_t with %lld after casting to long longPhilip Guenther
2014-08-10Rename p_hdrlen to min_hdrlen to better reflect its purpose.Lawrence Teo
No object file change ok florian@ henning@
2014-08-10Delete duplicate conditionalPhilip Guenther
diff from frantisek holop (minusf (at) obiit.org)
2014-08-10Replace F_DUPFD followed by setting FD_CLOEXEC with just F_DUPFD_CLOEXECPhilip Guenther
ok matthew@ millert@
2014-08-10Add Xr to skey and sttyPhilip Guenther
2014-08-10Delete extern declarations for variables that don't exist (anymore?)Philip Guenther
2014-08-10Only need <stdint.h> and not all of <inttypes.h> herePhilip Guenther
2014-08-10msts(4) appears to support TIOCSTSTAMPPhilip Guenther
From Maurice Janssen (maurice (at) z74.net)
2014-08-10Add F_DUPFD_CLOEXEC handlingPhilip Guenther
2014-08-10Add newer errnosPhilip Guenther
2014-08-09Switch from calloc() to reallocarray() where the zeroing isn't neededPhilip Guenther
2014-08-09Use time_t for storing timesPhilip Guenther
2014-08-09Parse times with strtoll() instead of strtol()Philip Guenther
2014-08-09Regenerate to pick up time_t changesPhilip Guenther
2014-08-09bfd-in2.h is generated from this; merge back a change that was made therePhilip Guenther
2014-08-09Store timestamps in time_tPhilip Guenther
2014-08-09bfd-in2.h is generated from this; merge back a change that was made therePhilip Guenther
2014-08-09After a cleanup by deraadt I noticed the four-space-indent had startedAlexander Hall
infesting the scripts. As we generally use a single tab for line continuation indent in the scripts, let's reclaim 30 precious bytes! ok rpe@ krw@
2014-08-09Fix readelf --debug-dump=frames-interp output: once a register is givenPhilip Guenther
a column, it needs to included in all rows, even after the register is restored. ok jsg@
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@
2014-08-09less chatty; ok ajacoutotJason McIntyre
2014-08-09mmap(2) requires MAP_PRIVATE ^ MAP_SHARED for flags;Ingo Schwarze
found by kristaps@ on Mac OS X
2014-08-09Extend comment.Antoine Jacoutot
2014-08-09Initial support for handling configuration files from packagesAntoine Jacoutot
(aka @sample) -- `sysmerge -p` Worked done at g2k14. Committing early so we have plenty of time for testing. with help from espie@ thanks to landry@ for feedback on initial testing
2014-08-09sysctl.conf is an example.Antoine Jacoutot
Tweak error output. Mention that `-S' has no effect when sets aren't used.
2014-08-09Add support for non-root hubs now that uhub(4) can deal with them. ForMartin Pieuchot
the moment only Super and High Speed devices are properly recognized. Some TT love is required for Full and Low speed devices.
2014-08-09Correctly recognize Super Speed devices, this is part of the work toMartin Pieuchot
be able to use USB 3.0 devices behind an external hub. This is a bit tricky because the SS status use a different power bit that maps to the Low speed one. So no longer accept devices without power bit and fallback to the parent hub's speed in case the status does not report any particular speed. Note that xhci(4) root hubs still set the traditionnal UPS_PORT_POWER bit with the correct device speed.
2014-08-09Handle super speed hub descriptors.Martin Pieuchot
2014-08-09Do not store the whole USB hub descriptor in the "struct usbd_hub"Martin Pieuchot
to help integrating super speed hubs that use a different descriptor.
2014-08-09some minor tweaks;Jason McIntyre
2014-08-09sort "prefork", and remove a useless macro;Jason McIntyre
2014-08-09basic cleanup;Jason McIntyre
2014-08-09Allow to inclue the types section anywhere in the configuration file.Reyk Floeter
Found by chris@ OK doug@
2014-08-09Remove support for the continuous reporting "any" mouse mode which neverNicholas Marriott
really worked properly and is rarely used.
2014-08-09Backport from 2.17: mark the _GLOBAL_OFFSET_TABLE_, _DYNAMIC, andPhilip Guenther
_PROCEDURE_LINKAGE_TABLE_ symbols as (at least) hidden.
2014-08-09Backport from binutils-2.17 the correct i386/amd64 register->int assignmentsPhilip Guenther
for CFI. This changes the unwind information generated on amd64.
2014-08-09We don't use the __openbsd_randomdata_{start,end} symbols, but ratherPhilip Guenther
get that info via the PT_OPENBSD_RANDOM segment info, so kill the symbols While here, delete the commented out lines for __DYNAMIC as the question they ask is answered 'no' ok matthew@ back in May
2014-08-09Match format width of symbol visibility to the column headerPhilip Guenther
This corrects the alignment of the columns of hidden symbols
2014-08-09Only need <stdint.h> and not <inttypes.h> herePhilip Guenther
2014-08-08update currency exchange rates;Jason McIntyre
2014-08-08some basic fixes;Jason McIntyre
2014-08-08zap trailing whitespace;Jason McIntyre
2014-08-08When opening directories, re-match the location after the index fileReyk Floeter
has been appended. This allows to use a fastcgi target as the default index, for example index.php. OK florian@
2014-08-08No events were added for DNS UDP so it stopped working after the firstReyk Floeter
request. Additionally, the DNS code tried to use an invalid timeout. Fix from mm@freebsd.org Reported by Johan Schuijt
2014-08-08Absurdly, the return value of sqlite3_column_text()Ingo Schwarze
is "const unsigned char *", which causes warnings with GCC on Linux. Explicitly cast to "const char *" to avoid this. Issue noticed by kristaps@.