Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-06-07 | support scoped IPv6 address. | Jun-ichiro itojun Hagino | |
no visible API change, old config files work just fine. now you can use expressions like "ALL: [fe80::%lo0/64]". theo ok | |||
2002-06-07 | move load_offs out of the link_map area. | Artur Grabowski | |
2002-06-06 | compatibilty -> compatibility | Aaron Campbell | |
2002-06-05 | Cleanup/remove duplicate code that checks STAT_RELOC_DONE. | Artur Grabowski | |
2002-06-05 | Get rid of an unnecessary typedef (for future cleanup). | Artur Grabowski | |
2002-06-04 | fix $OpenBSD$ tag. | Mike Pechkin | |
millert@ ok | |||
2002-06-04 | spelling; raj@cerias.purdue.edu | Theo de Raadt | |
2002-06-03 | Proper masks for 64 bit relocation types. ok art@ | Dale Rahn | |
2002-06-02 | minor KNF | Theo de Raadt | |
2002-05-30 | KNF | Theo de Raadt | |
2002-05-29 | More pid_t cleanup. Since 'pid' is pid_t we should: | Mike Pechkin | |
o) in ftpd_popen() convert 'pids' from int to pid_t too; o) in ftpd_pclose() return '-1', not pid_t, because it returns int; millert@ ok | |||
2002-05-29 | a few more strlcat | Theo de Raadt | |
2002-05-28 | libdl is not used anymore. Remove these as the support is now in libc. | Dale Rahn | |
2002-05-28 | KNF | Theo de Raadt | |
2002-05-28 | issetugid() test earlier | Theo de Raadt | |
2002-05-28 | unused variable in latest commit | Theo de Raadt | |
2002-05-28 | Remove LD_LIBRARY_PATH completely from environment, as per ldconfig manpage. | Dale Rahn | |
ok deraadt@ | |||
2002-05-28 | proto _dl_show_objects() in one place | Theo de Raadt | |
2002-05-28 | more KNF | Theo de Raadt | |
2002-05-27 | KNF | Theo de Raadt | |
2002-05-27 | strlcpy | Theo de Raadt | |
2002-05-27 | left over __P removals | Theo de Raadt | |
2002-05-27 | unsigned to unsigned int | Theo de Raadt | |
2002-05-26 | pid_t cleanup | Theo de Raadt | |
2002-05-25 | use _dl_strncmp() not strncmp(), _dl version is already present and used. | Dale Rahn | |
2002-05-25 | _dl_strcmp() and _dl_strchr() exist, do not pull these routines | Dale Rahn | |
from libsa source. | |||
2002-05-24 | Replace strcpy() with strlcpy(). | Dale Rahn | |
2002-05-24 | Change _dl_strcpy() to _dl_strlcpy(), implementation taken from libc. | Dale Rahn | |
2002-05-24 | not needed; deraadt@ ok | Federico G. Schwindt | |
2002-05-24 | more KNF | Theo de Raadt | |
2002-05-24 | more KNF | Theo de Raadt | |
2002-05-24 | various KNF | Theo de Raadt | |
2002-05-24 | remove another unneeded function | Theo de Raadt | |
2002-05-24 | replace some wrapper functions w/ no license w/ some public domain ones. | Eric Jackson | |
deraadt@ ok | |||
2002-05-23 | This stuff has no license. Delete it. If someone wants it back, get the ↵ | Theo de Raadt | |
licenses cleaned up, and put it in regress | |||
2002-05-23 | remove _dl_sprintf(). nothing uses it. and if it is gone, nothing can | Theo de Raadt | |
2002-05-23 | no need for -lkvm anymore | Theo de Raadt | |
2002-05-23 | KNF during an audit; found an improperly initialized sockaddr | Theo de Raadt | |
2002-05-22 | Fix last commit. | Todd C. Miller | |
2002-05-22 | Fix some ut_line manipulation pointed out by Moritz Jodeit. | Todd C. Miller | |
Fixes from Theo and myself. | |||
2002-05-22 | typo; moritz@jodeit.org | Theo de Raadt | |
2002-05-22 | a bunch more strcpy -> strlcpy and sprintf -> snprintf | Theo de Raadt | |
2002-05-22 | snprintf, and make it compile | Theo de Raadt | |
2002-05-22 | whack sprintf | Theo de Raadt | |
2002-05-22 | strlcpy sprinkling | Theo de Raadt | |
2002-05-21 | KNF | Theo de Raadt | |
2002-05-19 | o End a sentence with a period, not a comma; Hans-Joerg Hoexer | Todd C. Miller | |
o Start all sentences on a new line (me) | |||
2002-05-16 | KNF | Theo de Raadt | |
2002-05-16 | No longer needs to be setuid root. | Todd C. Miller | |
2002-05-14 | Major changes: | Todd C. Miller | |
Job names are now "runtime.queue" where runtime is when the job will run in Unix time format. This is what SysV at does and allows us to nuke the .SEQ file. Historic BSD options for atq and atrm are now implemented; atq and atrm get their own man pages. At no longer does anything with the -v flag. We print the execution time when jobs are submitted so there is no need. Most *scanf() usage is gone (one remains in atrun). Better sanity checks in atrun. Random style/cleanup. With these changes we have the best of both worlds; POSIX compliance with the traditional BSD features. |