summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-11-06- always initialize colormaps, even if the frame buffer is non console; thisMiod Vallat
helps if the ramdac does not get initialized (idea from jason@) - only register a shutdown hook for the frame buffers which need it, if this is the console frame buffer. Otherwise this is just a waste of time.
2002-11-06Move the weak definition from before the syscall's entry point toTodd C. Miller
after. This avoids a bunch of reloc warnings by working around a deficiency in the a.out loader. miod@ OK
2002-11-06no need for makeinfo --no-warn anymore; fgs removed offending parts inPeter Valchev
last commit
2002-11-06- make -u identical with "-o update". The same for -f,-r,-w.Grigoriy Orlov
- mount point may be specified with trailing slash in all cases (including fstab). - mount doesn't look in fstab at "-o update". So update doesn't fails for fs which isn't listed in fstab. - 'mount -o update' only changes options which supplied via command line and preserves options which currently in use. - fix argv[] buffer overflow in mountfs/mangle. - correct usage. - Other improvements and fixes which I can't remember. Thanks to everyone who test this patch. miod@ ok.
2002-11-06maintain refcnt correctly, ok art@Niklas Hallqvist
2002-11-06Fix obnoxious makeinfo warnings during build.Miod Vallat
2002-11-06From NetBSD; Use _C_LABEL, not SYSNAME to call sigaltstack, sigblock,Todd C. Miller
sigreturn. sigblock has not been a syscall since 4.3BSD and using SYSCALL directly seems like a bad idea in general. Fixes a build problem on vax. OK miod@
2002-11-06fix ecn breakage.Kenjiro Cho
this part of falling back to non-ecn on timeout slipped during merge from KAME. ok @art report to bugs@ by Han Boetes and Otto Moerbeek
2002-11-062x spelling, Jolan Luff, Thanks!Henning Brauer
2002-11-06Eliminate the use of KERN_SUCCESS outside of uvm/Artur Grabowski
Also uvm_map returns KERN_* codes that are directly mapped to errnos, so we can return them instead of doing some attempt to translation. drahn@ "I see no problem" pval@ "makes sense"
2002-11-05thread safe libc -- 2nd try. OK miod@, millert@Marco S Hyman
Thanks to miod@ for m68k and vax fixes
2002-11-05Updated from ftp.internic.netHenning Brauer
The J root server changed IPs. ok millert@
2002-11-05typo; GaryF@livevault.comMarkus Friedl
2002-11-05handle overflows for size_t larger than u_int; siw@goneko.de, bug #425Markus Friedl
2002-11-05Add a WEAK_ALIAS macro, to be used by libc/libc_r shortly.Miod Vallat
2002-11-05Use define, not number.Dale Rahn
2002-11-05-bytes_in/_out and total_in/_out are off_t, not long. fixes a few displayingHenning Brauer
problems with files > 2GB. -print bytes in/out to stderr in verbose mode ok millert@ fgsch@
2002-11-05Allocate by default 6 virtual consoles on alpha, as on i386, rather thanMiod Vallat
only one. X11 is configured here to start on ttyC5, like on i386 again. This requires alpha-specific changes to the X servers, that went in the tree before 3.2 was released. On tga-compatible boards, there are no virtual consoles available, and these changes will have no effect.
2002-11-05Rename cerror to __cerror and curbrk to __curbrk, to avoid namespaceMiod Vallat
pollution. Conforming to art@'s evil plans.
2002-11-05Rename cerror to __cerror and curbrk to __curbrk, to avoid namespaceMiod Vallat
pollution. Conforming to art@'s evil plans.
2002-11-04welcome to CIDR world, pfctl!Henning Brauer
use inet_net_pton to parse IP adresses. stuff like block in from 10/8 to any works now. some input camield@ and dhartmei@ ok dhartmei@, camield@, mcbride@
2002-11-04Put back the bits disabling setre[ug]id(). Perl will use setres[ug]idTodd C. Miller
instead so we don't need to use the (emulated) setre[ug]id() in libc.
2002-11-04test locks against _SPINLOCK_UNLOCKED, not 0. _SPINLOCK_UNLOCKED isMarco S Hyman
not zero on all arches
2002-11-04sync uucp/uucp owner/group with that validated in special.Marco S Hyman
OK fgs@
2002-11-04make this compile; reported by pluf, mickey ok.Federico G. Schwindt
2002-11-04state-opt = "max" seconds -> number, it limits the number of states notDaniel Hartmeier
time. ok henning@, pb@
2002-11-04log before send disconnect; ok djm@Markus Friedl
2002-11-04don't compare against pw_home if realpath fails for pw_home (seen on AFS); ↵Markus Friedl
ok djm@
2002-11-03back out previous patch.. there are still some vax/m68k issuesMarco S Hyman
2002-11-03libc changes for thread safety. Tested on:Marco S Hyman
alpha (millert@), i386 (marc@), m68k (millert@ and miod@), powerpc (drahn@ and dhartmei@), sparc (millert@ and marc@), sparc64 (marc@), and vax (millert@ and miod@). Thanks to millert@, miod@, and mickey@ for fixes along the way.
2002-11-03You can't always cast pointer to int on because the sizes arePeter Valchev
different; use intptr_t
2002-11-03Back out a local OpenBSD change I adapted from a 5.6.1 change.Todd C. Miller
I don't think it is needed anymore and it breaks MM_Unix's prefixify test.
2002-11-03The regex used in ExtUtils-MakeMaker-6.05 to check for pod didn't matchTodd C. Miller
=head[1-4] correctly.
2002-11-03Missing word in buffers size line.Miod Vallat
2002-11-02Include string.h to get memcpy() prototype; OK marc@Todd C. Miller
2002-11-02sync after libc[_r] minor crank; pvalchev@ ok.Federico G. Schwindt
2002-11-02sync.Federico G. Schwindt
2002-11-02- fix broken nodes and remove repeated items.Federico G. Schwindt
- remove FSinfo, we don't install it. millert pvalchev ok.
2002-11-02Don't try to process inline functions; fixes a problem parsingTodd C. Miller
macros.h on vax (noticed by hugh).
2002-11-02Compare dynamic addresses correctly in pf_compare_*: check the interface nameRyan Thomas McBride
rather than the ip address if it exists. ok dhartmei@ henning@
2002-11-02Make PF_ANEQ(), PF_ANEQ() and PF_AZERO() check the whole address if afRyan Thomas McBride
is not set to AF_INET6 or AF_INET ok dhartmei@ henning@
2002-11-02%i -> %d, matches the style of existing code, from millert@Daniel Hartmeier
2002-11-02printf int with %i, not %u. from pilot@monkey.org.Daniel Hartmeier
2002-11-02Actually, this is bind 4.9.9-RELTodd C. Miller
2002-11-01add a comment how to get secure maps built; millert@ ok.Federico G. Schwindt
2002-11-013.2 releasedMichael Shalayeff
2002-11-01Working atomic locks on vax for libc_r.Miod Vallat
ok marc@
2002-11-01Stub to help libc_r buildsMiod Vallat
2002-11-01fight the grammar in the tdr messagesMichael Shalayeff
2002-11-01Cleanup. Don't bother complaining when the user selects some non-existantKenneth R Westerback
set. Just re-display the selection list unchanged. Smaller, cleaner.