Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-10-18 | Do not define astpending twice, once non-volatile and one volatile. | Dale Rahn | |
2002-10-18 | media support; slightly modified from FreeBSD. | Federico G. Schwindt | |
mickey and millert ok. | |||
2002-10-18 | correct prefixlen handling (-prefixlen 32 will make it a host route) | Jun-ichiro itojun Hagino | |
2002-10-17 | Overhaul of boot_`arch`(8) manual pages (unfinished). | Miod Vallat | |
Attempt to factorize some texts, remove old or false stuff, try to be more {help,use}ful, etc. boot_alpha and boot_hp300 rewritten on the occasion, and boot_hppa is new. | |||
2002-10-17 | ifndef __HAVE_GENERIC_SOFT_INTERRUPTS leaved a label without a statement ↵ | Artur Grabowski | |
after it. Fix. | |||
2002-10-17 | - name in uvm_tree_sanity must be const. | Artur Grabowski | |
- fix a typo in comment. - enable uvm_tree_sanity ifdef DEBUG | |||
2002-10-17 | When augmenting the nodes in RB_ROTATE_{RIGHT,LEFT} make sure that the | Artur Grabowski | |
children nodes have reached their final state before augmenting the parent. This fixes an obscure inconsistency of the space in the vm_map tree that gcc 3.2 triggers when compiling isp.o on alpha. (this only led to some leaked space). frantzen@ provos@ ok. | |||
2002-10-17 | Make prefixlen check to make sure its argument is present before deref; ↵ | Jason Wright | |
millert ok. | |||
2002-10-17 | use shadows on fpu cxsw (and fix arg0 trashing), do not restore shadowed ↵ | Michael Shalayeff | |
regs before rfir | |||
2002-10-17 | renumber the CHIO* since they clash w/ the CDIO, keep the old ones as OCHIO, ↵ | Michael Shalayeff | |
EOL set to post 3.3 | |||
2002-10-17 | missing defines for syscalls and a better formatting in usage | Michael Shalayeff | |
2002-10-17 | define CDIOREADTOCENTRYS CDIOREADTOCENTRIES, not as a duplicate _IOWR(); ↵ | Michael Shalayeff | |
deraadt@ ok | |||
2002-10-17 | knf | Theo de Raadt | |
2002-10-17 | sync with gcc version, fixes bug in sftp where it had a 64 bit parameter | Dale Rahn | |
which straddled the last register first stack parameter. | |||
2002-10-17 | Add support for printing the AUDIO_* ioctls, too. | Jason Wright | |
2002-10-17 | Bigendian support for fxp, work from pefo with cleanups, ok art@ and others. | Dale Rahn | |
2002-10-17 | sync usage(). | Brad Smith | |
-- Ok'd by: deraadt@ | |||
2002-10-17 | These checks are also made in nat_consistent() and rdr_consistent(). | Ryan Thomas McBride | |
ok dhartmei@ henning@ | |||
2002-10-17 | - accept all protocols that are specified by number if they are in | Camiel Dobbelaar | |
the valid range (also when they're not listed in /etc/protocols) - explicitly disallow protocol number 0, because it has special meaning to pf ok dhartmei@ henning@ | |||
2002-10-17 | Style nits and missing free(), from david@phobia.ms | Daniel Hartmeier | |
2002-10-17 | little cleanup (intercept_getpid dies within the function on error). | Jun-ichiro itojun Hagino | |
from provos | |||
2002-10-17 | sync | Theo de Raadt | |
2002-10-17 | Correct io space config after last patch. allows fxp to work | Dale Rahn | |
(with pending fxp BE diffs) | |||
2002-10-17 | convert to use vm_page_md instead of pmap_physseg, make code smaller and ↵ | Michael Shalayeff | |
simpler, indeed; after art's suggestion and by looking into his diffs oneyed | |||
2002-10-17 | do not differentiate manually configured address from autoconfigured ones | Jun-ichiro itojun Hagino | |
wrt prefix management; - always earn a reference to the prefix when an address is configured (by ioctl). - always delete the prefix when an address that has the last referene is manually removed. The change should solve the problem raised in KAME-snap 6989. sync w/kame | |||
2002-10-16 | minor formatting. | Artur Grabowski | |
2002-10-16 | - don't use the function enclosure macros. | Wilbern Cobb | |
- replace `POSIX 1003.2' instances with St -p1003.2. ok mpech@, millert@ | |||
2002-10-16 | repeatitition | Michael Shalayeff | |
2002-10-16 | add both the v100 and v120 | Jason Wright | |
2002-10-16 | Replace "if (value != NULL && value == as->FOO)" with just | Todd C. Miller | |
"if (value == as->FOO)" -- NULL needs no special handling. Pointed out by Paul Borman. | |||
2002-10-16 | sprinkle const; mostly from NetBSD | Todd C. Miller | |
2002-10-16 | Slight KNF and return -1 on no match, not EOF | Todd C. Miller | |
2002-10-16 | Xr ccd for kicks | Theo de Raadt | |
2002-10-16 | Fix comment typos; most from NetBSD and FreeBSD | Todd C. Miller | |
2002-10-16 | kill register | Todd C. Miller | |
2002-10-16 | smoke; ok mickey@ | Markus Friedl | |
2002-10-16 | Implement isfdtype(3) as per the POSIX.1g draft; requested by David Hill | Todd C. Miller | |
2002-10-16 | Sync date parsing code with that in date(1) (which is obviously what pax's | Todd C. Miller | |
date code was based on). It is now possible to specify 4 digit years. | |||
2002-10-16 | sync | Todd T. Fries | |
2002-10-16 | move md things into md files (pass 1) as discussed a long time ago | Todd T. Fries | |
ok miod@ | |||
2002-10-16 | when using this file, label and ilabel set the term 'title' and icon labels. | Todd T. Fries | |
they do this by sending to stdout. commands like: 'ftp -o - ftp://blah/foo>foo' do not like having data added to the output stream. since we only define these two functions in an environment where /dev/tty exists, send output to /dev/tty to make sure it does not corrupt the output stream of commands. | |||
2002-10-16 | License from niels. | Artur Grabowski | |
2002-10-16 | support for privilege elevation. | Jun-ichiro itojun Hagino | |
with privilege elevation no suid or sgid binaries are necessary any longer. Applications can be executed completely unprivileged. Systrace raises the privileges for a single system call depending on the configured policy. Idea from discussions with Perry Metzger, Dug Song and Marcus Watts. from provos | |||
2002-10-16 | translation for socket system call | Jun-ichiro itojun Hagino | |
from provos | |||
2002-10-16 | correctly evaluate group predicates. | Jun-ichiro itojun Hagino | |
afrom provos | |||
2002-10-16 | 64bit pedant. %llu is "unsigned long long". markus ok | Jun-ichiro itojun Hagino | |
2002-10-16 | scp doesn't need misc.c. markus ok | Jun-ichiro itojun Hagino | |
2002-10-16 | Check parameters range. Alexander Yurchenko <grange@rt.mipt.ru> | Grigoriy Orlov | |
costa@ ok. | |||
2002-10-16 | Fix and improve binat mask comparison. | Mike Pechkin | |
dhartmei@, henning@ ok | |||
2002-10-16 | Remove the setuid bit from /usr/bin/login. If login is run by a user | Todd C. Miller | |
with a non-zero euid, it will now exec "su -L -l". The only things that need to do this are shells with a "login" builtin and the emulation that su(1) now does is good enough for this purpose. |