Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2002-10-16 | repeatitition | 1 | -2/+2 | ||
2002-10-16 | add both the v100 and v120 | 1 | -1/+3 | ||
2002-10-16 | Replace "if (value != NULL && value == as->FOO)" with just | 1 | -6/+6 | ||
"if (value == as->FOO)" -- NULL needs no special handling. Pointed out by Paul Borman. | |||||
2002-10-16 | sprinkle const; mostly from NetBSD | 17 | -81/+86 | ||
2002-10-16 | Slight KNF and return -1 on no match, not EOF | 1 | -12/+10 | ||
2002-10-16 | Xr ccd for kicks | 1 | -1/+2 | ||
2002-10-16 | Fix comment typos; most from NetBSD and FreeBSD | 14 | -85/+85 | ||
2002-10-16 | kill register | 15 | -395/+394 | ||
2002-10-16 | smoke; ok mickey@ | 1 | -1/+2 | ||
2002-10-16 | Implement isfdtype(3) as per the POSIX.1g draft; requested by David Hill | 6 | -14/+134 | ||
2002-10-16 | Sync date parsing code with that in date(1) (which is obviously what pax's | 3 | -63/+71 | ||
date code was based on). It is now possible to specify 4 digit years. | |||||
2002-10-16 | sync | 12 | -45/+44 | ||
2002-10-16 | move md things into md files (pass 1) as discussed a long time ago | 13 | -467/+484 | ||
ok miod@ | |||||
2002-10-16 | when using this file, label and ilabel set the term 'title' and icon labels. | 1 | -3/+3 | ||
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. | 2 | -0/+54 | ||
2002-10-16 | support for privilege elevation. | 12 | -142/+426 | ||
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 | 3 | -3/+92 | ||
from provos | |||||
2002-10-16 | correctly evaluate group predicates. | 1 | -2/+2 | ||
afrom provos | |||||
2002-10-16 | 64bit pedant. %llu is "unsigned long long". markus ok | 1 | -2/+2 | ||
2002-10-16 | scp doesn't need misc.c. markus ok | 1 | -2/+2 | ||
2002-10-16 | Check parameters range. Alexander Yurchenko <grange@rt.mipt.ru> | 1 | -25/+18 | ||
costa@ ok. | |||||
2002-10-16 | Fix and improve binat mask comparison. | 1 | -4/+2 | ||
dhartmei@, henning@ ok | |||||
2002-10-16 | Remove the setuid bit from /usr/bin/login. If login is run by a user | 4 | -45/+74 | ||
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. | |||||
2002-10-16 | Add a new flag, -L, to cause su(1) to loop asking for a login/password | 2 | -67/+160 | ||
repeatedly until the user authenticates or interrupts things. This will be used to make login(1) no longer setuid. | |||||
2002-10-16 | don't bork if there's a "calendar" directory in the current directory.... | 1 | -8/+11 | ||
ok millert | |||||
2002-10-16 | enable meta key in emacs mode for 7-bit locales; provos@ | 1 | -1/+19 | ||
2002-10-15 | Time ranges were documented incorrectly; Christian von Roques | 2 | -8/+8 | ||
We should probably add support for specifying the century too... | |||||
2002-10-15 | localhost variable is not needed; Peter Werner | 1 | -5/+1 | ||
2002-10-15 | Kafka, Bernhard, Schmidt; ok mickey@ | 2 | -4/+10 | ||
2002-10-15 | Protect p_priority with splstatclock. | 1 | -3/+3 | ||
2002-10-15 | Fix typo introduce in last commit | 1 | -2/+2 | ||
2002-10-15 | cast NULL varargs sentinel to char * so it is 64 bit on alpha & sparc64 | 1 | -5/+5 | ||
2002-10-15 | Document the fact that calling auth_setitem() with a NULL value | 1 | -4/+13 | ||
clears (frees) the corresponding value in the auth session. | |||||
2002-10-15 | sync | 3 | -72/+21 | ||
2002-10-15 | If auth_setitem() is called with the current value (ie: the pointer | 1 | -9/+11 | ||
is the same as the private value) then just return 0 as there is nothing to do. This fixes a potentially nasty problem where the caller could grab the username or style from the auth session via auth_getitem() and then call auth_verify() with those values. auth_setitem() would eventually get called which would make a private copy and free the old values in the auth session. After all this, the stashed username and/or style pointers would point to freed memory. | |||||
2002-10-15 | Note that when calling auth_verify() with a style and/or username, | 1 | -1/+6 | ||
the old values in the auth session will get freed and the new values added. | |||||
2002-10-15 | Cast NULL sentinel in auth_call() to a pointer | 1 | -2/+2 | ||
2002-10-15 | improve english | 1 | -3/+3 | ||
2002-10-15 | bugs are not bugs no more; pt out by miod@ | 1 | -3/+3 | ||
2002-10-15 | forth bit on d.b.a.'s anniversary tonight | 1 | -1/+2 | ||
2002-10-15 | a few missing options and pseudo-devs, noticed by miod@ and dhartmei@ | 1 | -4/+5 | ||
2002-10-15 | re-init the hw on resume, from grendel@zeitbombe.org | 2 | -3/+17 | ||
2002-10-15 | Use old-style version number when requiring at least perl 5.6.0. | 1 | -2/+2 | ||
Fixes a portability warning from perl-5.8.0; espie@ OK | |||||
2002-10-15 | correct powerhook proto and a description for the int why; from grendel@zeitbombe.org | 1 | -4/+9 | ||
2002-10-15 | Update Brazil DST based on new rules; from Paul Eggert | 1 | -13/+36 | ||
2002-10-15 | emir kusturica | 1 | -1/+2 | ||
2002-10-15 | columbus dup; from danimal@danimal.org | 1 | -2/+1 | ||
2002-10-15 | support sf2r card with attenuator; from jumbo@ w/ some knf from mickey@ | 2 | -27/+81 | ||
2002-10-15 | Note that this is based on RFC3378. | 1 | -2/+2 | ||
2002-10-15 | missing initmsgbuf(), noticed by miod@ | 1 | -3/+5 | ||