summaryrefslogtreecommitdiff
path: root/libexec
AgeCommit message (Collapse)Author
2002-06-07support 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-07move load_offs out of the link_map area.Artur Grabowski
2002-06-06compatibilty -> compatibilityAaron Campbell
2002-06-05Cleanup/remove duplicate code that checks STAT_RELOC_DONE.Artur Grabowski
2002-06-05Get rid of an unnecessary typedef (for future cleanup).Artur Grabowski
2002-06-04fix $OpenBSD$ tag.Mike Pechkin
millert@ ok
2002-06-04spelling; raj@cerias.purdue.eduTheo de Raadt
2002-06-03Proper masks for 64 bit relocation types. ok art@Dale Rahn
2002-06-02minor KNFTheo de Raadt
2002-05-30KNFTheo de Raadt
2002-05-29More 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-29a few more strlcatTheo de Raadt
2002-05-28libdl is not used anymore. Remove these as the support is now in libc.Dale Rahn
2002-05-28KNFTheo de Raadt
2002-05-28issetugid() test earlierTheo de Raadt
2002-05-28unused variable in latest commitTheo de Raadt
2002-05-28Remove LD_LIBRARY_PATH completely from environment, as per ldconfig manpage.Dale Rahn
ok deraadt@
2002-05-28proto _dl_show_objects() in one placeTheo de Raadt
2002-05-28more KNFTheo de Raadt
2002-05-27KNFTheo de Raadt
2002-05-27strlcpyTheo de Raadt
2002-05-27left over __P removalsTheo de Raadt
2002-05-27unsigned to unsigned intTheo de Raadt
2002-05-26pid_t cleanupTheo de Raadt
2002-05-25use _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 routinesDale Rahn
from libsa source.
2002-05-24Replace strcpy() with strlcpy().Dale Rahn
2002-05-24Change _dl_strcpy() to _dl_strlcpy(), implementation taken from libc.Dale Rahn
2002-05-24not needed; deraadt@ okFederico G. Schwindt
2002-05-24more KNFTheo de Raadt
2002-05-24more KNFTheo de Raadt
2002-05-24various KNFTheo de Raadt
2002-05-24remove another unneeded functionTheo de Raadt
2002-05-24replace some wrapper functions w/ no license w/ some public domain ones.Eric Jackson
deraadt@ ok
2002-05-23This 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-23remove _dl_sprintf(). nothing uses it. and if it is gone, nothing canTheo de Raadt
2002-05-23no need for -lkvm anymoreTheo de Raadt
2002-05-23KNF during an audit; found an improperly initialized sockaddrTheo de Raadt
2002-05-22Fix last commit.Todd C. Miller
2002-05-22Fix some ut_line manipulation pointed out by Moritz Jodeit.Todd C. Miller
Fixes from Theo and myself.
2002-05-22typo; moritz@jodeit.orgTheo de Raadt
2002-05-22a bunch more strcpy -> strlcpy and sprintf -> snprintfTheo de Raadt
2002-05-22snprintf, and make it compileTheo de Raadt
2002-05-22whack sprintfTheo de Raadt
2002-05-22strlcpy sprinklingTheo de Raadt
2002-05-21KNFTheo de Raadt
2002-05-19 o End a sentence with a period, not a comma; Hans-Joerg HoexerTodd C. Miller
o Start all sentences on a new line (me)
2002-05-16KNFTheo de Raadt
2002-05-16No longer needs to be setuid root.Todd C. Miller
2002-05-14Major 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.