summaryrefslogtreecommitdiffstats
path: root/libexec
Commit message (Collapse)AuthorAgeFilesLines
...
* Implement dladdr.jdp1998-02-061-4/+94
|
* Convert to mdoc. Header -> Id. Typo.charnier1998-02-032-395/+394
|
* Remove lfs_cleanerdphk1998-01-307-1831/+0
|
* Disable lfs_cleanerdphk1998-01-301-2/+2
|
* Merged just enough files from Lite2 in lfs_cleanerd to convert frombde1998-01-203-48/+145
| | | | | | MOUNT_LFS to "lfs" in one place. The merge was painful because it conflicted with cosmetic FreeBSD changes. lfs_cleanerd still compiles cleanly but has aproximately the same chance of working as before (0).
* Make these programs compile and work correctly now that /usr/include/rpcsvcwpaul1998-01-193-35/+58
| | | | | | has been ANSI-fied. Pointed out by: bde
* Removed most unused includes of <net/if_var.h> outside the kernel.bde1998-01-161-2/+1
|
* Add missing dot.charnier1998-01-071-2/+2
|
* Remove unused #includes and make it compile again with -DDEBUG. Use syslog()charnier1998-01-072-12/+10
| | | | instead of errx() when being a daemon.
* Remove unused #include. Display if inetd started us in case of failure.charnier1998-01-072-10/+5
|
* Typos.charnier1998-01-071-3/+3
|
* Typo fix: bootgw -> bootpgwmax1997-12-291-2/+2
|
* style(9) nitsimp1997-12-261-2/+3
| | | | Submitted by: bde
* sprintf->snprintf paranoiaimp1997-12-241-4/+4
| | | | Obtained from: OpenBSD (?)
* Be extra paranoid about the length of data returned from gethostbyaddr orimp1997-12-241-2/+2
| | | | | gethostbyname. Submitted by: Julian Assange
* sprintf->snprintf paranoia. The one thing that looks like a hole inimp1997-12-241-7/+8
| | | | | the diff is in an ifdef that isn't enabled for FreeBSD. Obtained from: OpenBSD(?)
* Various sprintf -> snprintf fixes.imp1997-12-242-9/+12
| | | | | Minor style fix (strcpy(foo,"") -> *foo = '\0') Obtained from: OpenBSD(?)
* Use snprintf rather than printf out of paranoiaimp1997-12-245-9/+10
| | | | Obtained from: OpenBSD
* Typo.charnier1997-12-181-2/+2
|
* Cosmetic in usage string.charnier1997-12-151-2/+2
|
* Use full path in synopsis. Sort #includes. Use .Tn for NIS.charnier1997-12-086-104/+163
|
* Sync with diffs I found in kerberised versions: -Wall, no `;' in macros.charnier1997-12-083-27/+25
|
* Make emacs work again. This is a workaround for the fact that thejdp1997-12-051-18/+33
| | | | | | | | | | | | | | | | | | | | emacs a.out file, self-generated by emacs's "unexec" function in "unexsunos4.c", is invalid. In particular, its "_end" symbol has the wrong value. The dynamic linker was using the value of that symbol to initialize its sbrk break level. The workaround is to peek at the executable's a.out header in memory, and calculate what "_end" should be based on the segment sizes. I will work out a fix for emacs and send it to the FSF. This dynamic linker workaround is still worthwhile, if only to avoid forcing all emacs users to build a new version. Note: xemacs gives a bogus warning at startup, for related reasons. The warning is harmless and can safely be ignored. I will send a patch to the xemacs maintainers to get rid of it, and meanwhile add a patch file to our port.
* Use err(3). Add prototypes. Document that startup scripts are rc.i386 andcharnier1997-12-045-61/+92
| | | | | rc.conf (enable/disable) not rc.local. Use full pathname in SYNOPSIS section.
* Sort #includes. Add rcsid. Use full pathname in SYNOPSIS section.charnier1997-12-042-12/+14
|
* FTP_INTERNAL_LS -> FTPD_INTERNAL_LSsteve1997-12-041-2/+2
| | | | Pointed out by: Jaye Mathisen <mrcpu@cdsnet.net>
* Use full path in synopsis. Syslog will add trailing \n.charnier1997-12-032-27/+39
|
* Use err(3). Remove progname and trailing \n in syslog strings.charnier1997-12-038-149/+155
|
* Use err(3). Add protos for -Wall.charnier1997-12-026-34/+73
|
* No \n in syslog() strings. Add man page to Xrefs. Change null byte to NUL byte.charnier1997-12-022-23/+37
|
* Do not terminate syslog() messages with a dot, as others daemons do.charnier1997-12-022-15/+16
|
* Document -n flag. Use err(3). Add usage.charnier1997-12-022-36/+53
| | | | Add syslog capability.
* Get rid of the dynamic linker's internal malloc package, and arrangejdp1997-11-292-267/+474
| | | | | | | | | | | | | | | | | | | | | | | | | | things so that it uses the same malloc as is used by the program being executed. This has several advantages, the big one being that you can now debug core dumps from dynamically linked programs and get useful information out of them. Until now, that didn't work. The internal malloc package placed the tables describing the loaded shared libraries in a mapped region of high memory that was not written to core files. Thus the debugger had no way of determining what was loaded where in memory. Now that the dynamic linker uses the application's malloc package (normally, but not necessarily, the system malloc), its tables end up in the regular heap area where they will be included in core dumps. The debugger now works very well indeed, thank you very much. Also ... Bring the program a little closer to conformance with style(9). There is still a long way to go. Add minimal const correctness changes to get rid of compiler warnings caused by the recent const changes in <dlfcn.h> and <link.h>. Improve performance by eliminating redundant calculations of symbols' hash values.
* Use err(3). -Wall cleaning. cosmetics in man page.charnier1997-11-263-23/+30
|
* Remove \n at end of syslog string. -Wall cleaning. Cosmetics in man page.charnier1997-11-263-28/+39
|
* Cosmetics in man page. Add rcsid and sort #includes.charnier1997-11-262-15/+22
|
* Use err(3). -Wall cleaning. Use Pa for file names and add section in Xrefs.charnier1997-11-262-23/+29
|
* Sort #includes. Add rcsid. Add man page section in .Xrefs.charnier1997-11-252-13/+15
|
* Use warn(3). Hardcode progname instead of using argv[0]. Use Pa for filecharnier1997-11-254-59/+66
| | | | name.
* Add usage(), rcsids.charnier1997-11-247-16/+43
|
* Cosmetics in usage() and man page.charnier1997-11-244-59/+60
|
* Key is 8 bytes according to code, not 10 as stated in man page. Add rcsid.charnier1997-11-242-5/+7
|
* Use err(3) instead of local redefinition. Add usage. -Wall cleaning.charnier1997-11-245-93/+79
|
* Correct incompletes .Xrs. Remove duplicate #includes and unused variables.charnier1997-11-217-52/+58
|
* Use err(3). -Wall cleaning.charnier1997-11-212-15/+17
|
* Cosmetics in man page. Exit(-1) -> exit(1).charnier1997-11-216-30/+36
|
* Add const to copyright string. Put sccsid under #if 0/#endif control.charnier1997-11-202-7/+7
|
* Use err(3). exit(-1) -> exit(1).charnier1997-11-201-11/+11
|
* Cosmetic in error strings. Sort Xrefs. Add usage (with syslog capability).charnier1997-11-203-55/+67
|
* Log the request from the remote side, in addition to it having happened.sef1997-11-141-13/+27
| | | | Reviewed by: julian
OpenPOWER on IntegriCloud