Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-11-09 | SEE ALSO reordering. | Federico G. Schwindt | |
2002-11-09 | yet another round of SEE ALSO fixes. | Federico G. Schwindt | |
2002-11-09 | more SEE ALSO fixes. | Federico G. Schwindt | |
2002-11-09 | only one angola independence day and another angola history day once here | Michael Shalayeff | |
2002-11-09 | no more uucp(1). | Federico G. Schwindt | |
2002-11-09 | second round to SEE ALSO fixes. | Federico G. Schwindt | |
2002-11-09 | SEE ALSO reordering and corrections. | Federico G. Schwindt | |
2002-11-09 | doh, better now. | Federico G. Schwindt | |
2002-11-09 | uucp(1) doesn't exist anymore. | Federico G. Schwindt | |
2002-11-08 | In login emulation mode use the same setusercontext() flags as | Todd C. Miller | |
login(1). Previously, setlogin() was not being done in -L mode. | |||
2002-11-08 | kill two compiler warnings; ok marc@ | Todd T. Fries | |
2002-11-08 | absolutely no need to save the fpu state before rewriting the fpu regs, just ↵ | Michael Shalayeff | |
reset the curpcb and force a reload | |||
2002-11-08 | hmm, todos seem to be unapplicable no more | Michael Shalayeff | |
2002-11-08 | a missing next kbd type | Michael Shalayeff | |
2002-11-08 | only reset the pending fpu exceptions on fork, not the rest of the fpu ↵ | Michael Shalayeff | |
status reg | |||
2002-11-08 | gotta get down into hppa too | Michael Shalayeff | |
2002-11-08 | add a radio receivers section and bktr yto the misc | Michael Shalayeff | |
2002-11-08 | bktr is leaving the i386 nest | Michael Shalayeff | |
2002-11-08 | regen | Michael Shalayeff | |
2002-11-08 | add bktr and radio | Michael Shalayeff | |
2002-11-08 | prepare for bktr on macppc (commented out in generic for now); drahn@ ok | Michael Shalayeff | |
2002-11-08 | finishdup: Avoid reference count leak in error case by reordering some code. | Artur Grabowski | |
2002-11-08 | Support for Promise PDC20275 and PDC20277. Untested. | Grigoriy Orlov | |
from grange@rt.mipt.ru | |||
2002-11-08 | Don't check IRQ assertion since this code was derived from FreeBSD | Grigoriy Orlov | |
without any documentation and breaks second channel support. Supplied and tested by grange@rt.mipt.ru. Thanks to Evgeniy Polyakov <johnpol@2ka.mipt.ru> for hardware donation. | |||
2002-11-08 | init buf to NULL just in case... | Henning Brauer | |
there isn't a single codepath where it can remain uninitialized, but this might prevent a stupid bug if we change something later | |||
2002-11-08 | I missed a 'return' statement. Also spotted by Aref Taidi. Thanks. | Hakan Olsson | |
2002-11-08 | Time to cleanup: | Mike Pechkin | |
o) start new sentence on a new line; o) wrap long lines; o) don't use .Pp before/after .Sh, .Ss; o) OpenBSD -> .Ox; o) typos; o) close .Rs; o) use space between arguments in tag, for example: .Xr blabla ) . miod@ ok | |||
2002-11-08 | Do not try to initialize entries in the fd table before the table | Marco S Hyman | |
is created. | |||
2002-11-08 | Use STDIN_FILENO and STDOUT_FILENO & ANSI prototypes; Chad Loder | Todd C. Miller | |
2002-11-08 | Implement simple vnodeop inheritance for specfs and fifofs. | Artur Grabowski | |
The inheritace is implemented by setting the default vnodeop to a bypass op that repeats the operation on the spec/fifo vnodeop vector. The overhead of one extra indirect function call is worth the cleanup and improved correctness. This actually solves a few bugs where some vnode ops were missing from some vectors (like kqfilter or revoke). (and even more on the ubc branch). Inspired by the same thing done in FreeBSD. | |||
2002-11-08 | Don't uvm_useracc and then vslock. vslock is better at finding illegal mappings. | Artur Grabowski | |
2002-11-08 | http redirect support; adapted from NetBSD. | Federico G. Schwindt | |
2002-11-08 | Don't uvm_useracc the user sigcontext in sys_sigreturn and then access | Michael Shalayeff | |
the user addresses directly from the kernel. copyin is faster and can correctly deal properly with mappings that uvm_useracc thinks are correct but will fault anyway (to figure out how to generate such mappings is left as en excercise for the reader). | |||
2002-11-08 | Don't uvm_useracc the user sigcontext in sys_sigreturn and then access | Miod Vallat | |
the user addresses directly from the kernel. copyin is faster and can correctly deal properly with mappings that uvm_useracc thinks are correct but will fault anyway (to figure out how to generate such mappings is left as en excercise for the reader). Blatantly stolen from art@'s similar fix to sparc. | |||
2002-11-07 | Install /var/log/message 644 since the beginning and change back | Peter Valchev | |
newsyslog.conf to reflect that. More people seem to prefer that, and it can be easily changed if you like it another way. millert, fgs and others verbally agree | |||
2002-11-07 | /var/log/messages is mode 640 not 644 by default; root@shopip.com | Peter Valchev | |
2002-11-07 | mention onther windows nt flavours wrt using proper raw floppy writing ↵ | Michael Shalayeff | |
utility; form DJ Gregor via pr2851 | |||
2002-11-07 | check exit status from ssh, and exit(1) if ssh fails; bug#369; binder@arago.de | Markus Friedl | |
2002-11-07 | Short-circuit evaluation can leave invalid pointers, closes PR2874. | Daniel Hartmeier | |
2002-11-07 | Don't complain about missing man dirs unless in picky mode or if | Todd C. Miller | |
there is something other than a dir in the way. Closes PR 2935. | |||
2002-11-07 | we cannot use HostbasedAuthentication for enabling ssh-keysign(8), | Markus Friedl | |
because HostbasedAuthentication might be enabled based on the target host and ssh-keysign(8) does not know the remote hostname and not trust ssh(1) about the hostname, so we add a new option EnableSSHKeysign; ok djm@, report from zierke@informatik.uni-hamburg.de | |||
2002-11-07 | Check for non-existent group in groupdel just like userdel; Sebastian Stark | Todd C. Miller | |
2002-11-07 | dev/isa/i82365_isasubr.c is needed for pcic at pci; from Bernard Gardner via ↵ | Michael Shalayeff | |
pr2962 | |||
2002-11-07 | Change some err/warn -> errx/warnx. Should maybe do the same for | Todd C. Miller | |
the short write cases. | |||
2002-11-07 | mention restart issues with 3rd party modules | Henning Brauer | |
PR 2902, Francesco Toscan, Thanks! | |||
2002-11-07 | Allow '$' in a username as long as it is the last character since | Todd C. Miller | |
samba wants to create usernames that end in '$'. From Paul Chakravarti | |||
2002-11-07 | httpd(8), not (1)... | Henning Brauer | |
PR 2891, jlouis at diku dk, Thanks! | |||
2002-11-07 | Add ldap; Jedi/Sector One | Todd C. Miller | |
2002-11-07 | Fix CIRCLEQ example; Hector A. Paterno | Todd C. Miller | |
2002-11-07 | fix typo; Nick Nauwelaerts | Todd C. Miller | |