Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-03-12 | Make the function prototypes line up better and add stub struct | Todd C. Miller | |
definitions to allow bsd_auth.h to be included before login_cap.h or pwd.h. | |||
2002-03-04 | DES_LONG as non-int is just RIDICULOUS | Theo de Raadt | |
2002-02-20 | Revert local changes that snuck in to the last commit. | Todd C. Miller | |
2002-02-20 | Some user header files may define an abs macro which will cause a | Todd C. Miller | |
syntax error if the #define happens before stdlib.h is included. If abs is #defined, #undef and issue a warning. This is similar to what Tru64 UNIX does and is effectively the same as what happens on Solaris (though on Solaris the real abs() is a macro). | |||
2002-02-19 | We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft. | Todd C. Miller | |
2002-02-18 | netiso/xebec no more | Michael Shalayeff | |
2002-02-17 | Manual cleanup of remaining userland __P use (excluding packages maintained ↵ | Todd C. Miller | |
outside the tree) | |||
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2001-12-30 | libusb -> libusbhid | Peter Valchev | |
2001-11-06 | no more vm in LDIRS | Theo de Raadt | |
2001-11-04 | Ghostscript port refused to build with 'printf' in the | Kenneth R Westerback | |
__attribute__ statement. Using '__printf__' makes it happy. ok millert@ miod@ | |||
2001-11-02 | attribute(format) no longer implies nonnull... | Marc Espie | |
ok millert@ miod@ | |||
2001-11-01 | Mention printf-like attributes for setproctitle(). | Miod Vallat | |
millert@ espie@ ok | |||
2001-10-11 | C++ has all those as built-ins. Problem found with gcc 3.0.1 testsuite. | Marc Espie | |
okay theo. | |||
2001-10-01 | new rmd160 implementation. based on | Markus Friedl | |
ftp://ftp.rsasecurity.com/pub/cryptobytes/crypto3n2.pdf, ok deraadt@ | |||
2001-09-15 | prototype cleanup | Theo de Raadt | |
2001-09-04 | put changes back, this time ALL the files. | Federico G. Schwindt | |
2001-09-03 | how did ../lib/libusb not get added? Bad developers | Theo de Raadt | |
2001-08-30 | Back out fgsch@'s tree breaking commits. | Todd T. Fries | |
Test next time, ok? | |||
2001-08-30 | fix some const warnings | Federico G. Schwindt | |
2001-08-26 | Change the second arg to pw_mkdb() from a boolean flag to a set of | Todd C. Miller | |
bit flags ORed together. Currently the only flags defined are _PASSWORD_SECUREONLY and _PASSWORD_OMITV7 but this is enough to cause pw_mkdb() to run pwd_mkdb with the options we want. With this change we no longer generate the old V7 passwd file when only the extra fields in master.passwd (or the encrypted password) have changed. There are other programs that could probably use the _PASSWORD_OMITV7 flag; they will be converted at a future date. | |||
2001-08-07 | remove redundant __noreturn__ attributes now that __dead is sane for modern gcc | Todd C. Miller | |
2001-08-06 | add getrrsetbyname(3) - API to retrieve arbitrary DNS records | Jakob Schlyter | |
2001-07-31 | add support for EDNS0 extended flag DNSSEC OK (aka DO). ok deraadt@ | Jakob Schlyter | |
2001-07-31 | we talked about libsectok having an include target a couple of times.... | Theo de Raadt | |
2001-07-25 | EDNS0 RFC ref typo. ok deraadt@ | Jakob Schlyter | |
2001-07-19 | typo in comment | Marc Espie | |
2001-07-19 | Expose protos for _{err,warn}{,x} regardless of __indr_reference being | Todd C. Miller | |
defined since in the notdef __indr_reference case they are still present, just as real functions. Fixes some alpha warnings. | |||
2001-07-15 | Give login_cap_t a struct name so we can use forward declarations. | Todd C. Miller | |
2001-07-11 | remove mips leftovers; ok brad | Peter Valchev | |
2001-06-30 | Default login style is now krb4-or-pwd, not krb-or-pwd. | Todd C. Miller | |
2001-06-27 | Why was a very large chunk of code commited to the source tree without | Theo de Raadt | |
checking if a make build of the entire system still works? How many other parts of the tree are now not going to build? All development has not stopped until this is fixed. | |||
2001-06-26 | Install kerberosV includefiles | Hans Insulander | |
2001-06-18 | Add new cgetusedb() function to toggle reading of .db files in getcap(3). | Todd C. Miller | |
Needed for cap_mkdb to really DRT when given several input files or an output file with a different name from the input file. cvs: ---------------------------------------------------------------------- | |||
2001-06-13 | Simplify. | Artur Grabowski | |
2001-06-11 | support EDNS0 (RFC2671) buffer size notification on DNS queries. | Jun-ichiro itojun Hagino | |
"options edns0" in /etc/resolv.conf will enable the behavior. no behavior change if you don't have the line. see resolv.conf(5) for more details. EDNS0 is useful for avoiding TCP DNS queries/replies on larger DNS responses. also, draft-ietf-dnsext-message-size-* plans to mandate EDNS0 support for DNS clients that support IPv6 transport. | |||
2001-06-08 | oops. | Artur Grabowski | |
2001-06-08 | Ooops. Add struct r_debug, from powerpc. | Artur Grabowski | |
2001-06-05 | repair copyright notices for NRL & cmetz; cmetz | Theo de Raadt | |
2001-05-31 | If DT_PROCNUM is not defined, assume it's 0 | Artur Grabowski | |
2001-05-31 | correct prototype for dlerror. | Artur Grabowski | |
2001-05-31 | Install link.h and dlfcn.h on alpha. | Artur Grabowski | |
2001-05-26 | Change protection of struct exception back from #ifdef __LIBM_PRIVATE | Todd C. Miller | |
to #ifndef __cplusplus. It turns out there is code outside of libm that wants to use this. I suppose that's why it is in math.h instead of math_private.h ;-) | |||
2001-05-15 | Make path length variables size_t. This fixes the problem where | Todd C. Miller | |
things like rm can't remove files with ridiculously long path names that were created by some script kiddie trying in vain to exploit something. Previously, the length was effectively constrained to USHRT_MAX due to one of the internal structs. Also, nuke FTS_CHDIRROOT since it never worked correctly and hasn't been documented for a long time. | |||
2001-05-14 | Speed-up: | Marc Espie | |
- remove extra subshells; - use exec on terminal commands, avoiding dangling shells that don't control anything. More correct: - use && some more; - remove `-' in front of includes, so that failures WILL fail... Okay millert@, deraadt@ | |||
2001-03-18 | Build gnu/lib/libreadline and use it instead of the one currently | Todd C. Miller | |
in the binutils dir. | |||
2001-03-18 | GLOB_LIMIT changes from christos | Theo de Raadt | |
2001-03-09 | Move nanosleep() proto to from sys/time.h to time.h where it belongs. | Todd C. Miller | |
Problem noted by Jean-Baptiste Marchand | |||
2001-03-03 | plug many memory leaks | Theo de Raadt | |
2001-03-02 | Add ohash_* functions to libc. | Marc Espie | |
Ok'd deraadt@, millert@ |