summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-09-03Add __cxa_atexit() support for gcc3. This provides support for shared ↵Todd C. Miller
object destructors called at dlclose() time. Inspired by similar changes in FreeBSD and NetBSD.
2007-09-03Add ENOMSG and EIDRM; from jsg@Todd C. Miller
2007-09-03add recaloc(3)Todd C. Miller
2007-09-03add memrchr(3)Todd C. Miller
2007-09-03malloc(n * m) -> calloc(n, m); ok espieTheo de Raadt
2007-09-03use calloc() for the sake of regularity, prompted by deraadt@Marc Espie
Note that I *still* fill every pointer with explicit NULL, for portability. filling with 0 bytes is not necessarily the same as NULL pointers.
2007-09-03Unsetting a non-existent variable is not an error. SeeOtto Moerbeek
http://www.opengroup.org/onlinepubs/009695399/utilities/unset.html report from Arkadiusz Miskiewicz; fixed based on http://cvs.pld-linux.org diff; ok millert@ fgsch@
2007-09-03- break "Defaults env_keep" into several lines so it is more readableAntoine Jacoutot
- add OWNER and GROUP to env_keep so that make-plist creates pkg/P* with the correct uid/gid (hopefully this would be the last ports related change) ok millert@
2007-09-03last commit broke the tree because of missing parentheses.Moritz Jodeit
ok henning@
2007-09-03__inline removalJacob Meuser
tested on my amd64 from bret.lambert@gmail.com via art@, thanks
2007-09-03Only send hash of /etc/ipsec.conf if it changes since it can containJoel Knight
a pre-shared key ok hshoexer@ cloder@ (some time ago)
2007-09-03Make use of the pfsync 'badval' and 'stale' counters instead of usingJoel Knight
'badstate' everywhere. ok henning@
2007-09-03Make use of the carp preempt counter to signal number of transitions ofJoel Knight
any carp group to master status. ok dhartmei@
2007-09-03sizeof char is 1; ok djmTheo de Raadt
2007-09-03unbreak.Marc Balmer
2007-09-03Add more PCI ids; taken from the linux driver. Pointed out by StephanMarco Peereboom
Eisvogel <eisvogel at embinet dot de>
2007-09-03syncMarco Peereboom
2007-09-03Add some more PCI ids for mpi; pointed out by Stephan EisvogelMarco Peereboom
<eisvogel at embinet dot de>
2007-09-03Typos from miod. 'specificed' -> 'specified' in some comments and man page.Kenneth R Westerback
2007-09-03Typos from miod. 'requiered' -> 'required' in some comments.Kenneth R Westerback
2007-09-03Typos from miod. 'functin' -> 'functin' in some comments.Kenneth R Westerback
2007-09-03Typos from miod. 'intrrupt' -> 'interrupt' in some comments.Kenneth R Westerback
2007-09-03Typos from miod. 'sfotware' -> 'software' in some comments.Kenneth R Westerback
2007-09-02more malloc(n * m) -> calloc(n, m); from Igor ZinovikTheo de Raadt
2007-09-02Fix typos in comments: soruce -> sourceHans-Joerg Hoexer
2007-09-02Disable ROM search acceleration for now, it has some issues.Alexander Yurchenko
2007-09-02use calloc() to avoid malloc(n * m) overflows; checked by djm canacar jsgTheo de Raadt
2007-09-02OpenCVS server init-support with OpenCVS and GNU cvs clients.Tobias Stoeckmann
OK joris@
2007-09-02Stick at GNU cvs behaviour with Root directive handling: it does not needTobias Stoeckmann
to be sent first, can occure multiple times (although this is ignored) but should be supplied before Directory. OK joris@
2007-09-02ctob is gone, use ptoaMartin Reindl
tested by ckuethe
2007-09-02Handle quotation marks in .cvsrc correctly.Tobias Stoeckmann
OK joris@
2007-09-02Stick at GNU cvs behaviour by writing "Initial revision" in revision 1.1Tobias Stoeckmann
instead of custom log message (which gets written into 1.1.1.1). OK joris@
2007-09-02Log all commands sent with cvs_remote_output(), not justTobias Stoeckmann
cvs_client_send_request(). Simplified logging code while at it. OK joris@
2007-09-02regenJonathan Gray
2007-09-02Add ENE Memory Stick/SD/SDMMC entries.Jonathan Gray
From Alexey Suslikov <alexey.suslikov@gmail.com>
2007-09-02vic works in vmware fusion tooDavid Gwynne
2007-09-02Add support for Alltel UTStarcom PPC6700.Jonathan Gray
Tested by Sam Fourman Jr. <sfourman@gmail.com>
2007-09-02regenJonathan Gray
2007-09-02Alltel UTStarcom PPC6700.Jonathan Gray
2007-09-01malloc(n * m) -> calloc(n, m); from zinovikTheo de Raadt
2007-09-01Correct the backwards ethernet address that some NVidia MACs have.Chris Kuethe
diff from brad. "commit this" jsg
2007-09-01since theHenning Brauer
MGET* macros were changed to function calls, there wasn't any need for the pool declarations and the inclusion of pool.h From: tbert <bret.lambert@gmail.com>
2007-09-01Use an int, not a size_t, to store the return value of snprintf().Matthias Kilian
This gives the later tests against -1 a chance to actually do something. Initially from Igor Zinovik <zinovik@cs.karelia.ru>. ok ray@
2007-09-01- Add bthidev(4), from NetBSD.Xavier Santolaria
- Make btms(4) and btkbd(4) compile. - Removed remaining proplib NetBSD'sim Prodded a while ago by gwk@. Eyeballed by miod@.
2007-09-01s/free/xfreeJoris Vink
2007-09-01fix a use after free case.Thordur I. Bjornsson
From Bret Lambert via deraadt@; ok miod@
2007-09-01replace the machine dependant bytes-to-clicks macro by the MI ptoa()Martin Reindl
version for i386 more architectures and ctob() replacement is being worked on prodded by and ok miod
2007-09-01Fix space and underline handling in rasops24_putchar(), spotted by Leon Zadorin.Miod Vallat
2007-09-01Do not include <machine/rpb.h> unless necessary.Miod Vallat
2007-09-01In pmap_protect(), compute the bitmask to set in the ptes only once, insteadMiod Vallat
of every iteration.