summaryrefslogtreecommitdiffstats
path: root/libexec
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Switch the effective uid to that of the user when writing mail files,alex1997-11-131-3/+27
| | | | | | | allowing quotas to be enforced on mail spools. PR: 1111 Submitted by: Charles Henrich <henrich@crh.cl.msu.edu>
* Store temporary files in /var/tmp instead /tmp. This should avoidwosch1997-10-112-4/+4
| | | | | a possible disk overflow for enormous large mails. Submitted by: grog
* PR: bin/771 and bin/1037 are resolved by this changeuhclem1997-10-081-1/+17
| | | | | | | | | | | | | | | | This change changes the default handling of linemode so that older and/or stupider telnet clients can still get wakeup characters like <ESC> and <CTRL>D to work correctly multiple times on the same line, as in csh "set filec" operations. It also causes CR and LF characters to be read by apps in certain terminal modes consistently, as opposed to returning CR sometimes and LF sometimes, which broke existing apps. The change was shown to fix the problem demonstrated in the FreeBSD telnet client, along with the telnet client in Solaris, SCO, Windows '95 & NT, DEC OSF, NCSA, and others. A similar change will be incorporated in the crypto version of telnetd. This resolves bin/771 and bin/1037.
* Clarify the actions of -s and the list of allowable names.imp1997-10-061-1/+5
|
* Changes to support full make parallelism (-j<n>) in the worldjkh1997-10-051-3/+4
| | | | | | target. Reviewed by: <many different folks> Submitted by: Nickolay N. Dudorov" <nnd@nnd.itfs.nsk.su>
* Putting records with zero-length keys into a Berkeley DB hash databasewpaul1997-09-301-6/+22
| | | | | | | | | | | | | | | | | is asking for trouble (sequential database enumerations can get caught in an infinite loop). The yp_mkdb(8) utility avoids putting such records into a database, but ypxfr does not. Today I got bit by a NULL entry in one of the amd maps on my network, which is served by a SunOS master. The map was transfered successfully to my FreeBSD slave, but attempting to dump it with ypcat(1) caused ypserv(8) to transmit the same record over and over again, making the map appear to be infinitely large. I finally noticed the problem while testing a new version of amd under development at the Columbia CS department, which began gobbling up insane amounts of memory while trying to swallow the map. To deal with this problem, I'm modifying ypxfr to watch for records with zero-length keys and turn them into something less destructive before writing them to the database.
* Changes for KTH KerberosIV.markm1997-09-281-7/+2
|
* There is a clear separation of the crypto telnet and the non-crypto telnet.markm1997-09-281-4/+0
| | | | | As this is the non-crypto version, remove the useless (commented out) directives and macros.
* Changes for the new KTH Kerberos4.markm1997-09-282-16/+21
| | | | Also make -Wall a bit quieter
* Changes for the new KTH Kerberos.markm1997-09-282-12/+26
| | | | Also make -Wall a bit quieter.
* Many places in the code NULL is used in integer context, wherephk1997-09-184-10/+10
| | | | | | | | | plain 0 should be used. This happens to work because we #define NULL to 0, but is stylistically wrong and can cause problems for people trying to port bits of code to other environments. PR: 2752 Submitted by: Arne Henrik Juul <arnej@imf.unit.no>
* Allow backspace tooache1997-09-151-2/+2
|
* disable upper controls and enable all otherache1997-09-151-11/+15
| | | | 8bit codes due to lack of locale knowledge in daemon
* -p flag misdocumented in telnetd(8)wosch1997-09-141-3/+3
| | | | | PR: 4462 Submitted by: hfir@math.rochester.edu
* spelling corrections.wosch1997-09-133-9/+9
| | | | | PR: docs/4450 Submitted by: josh@quick.net
* Do setlogin() before changing uid/gid, sincedima1997-09-081-11/+17
| | | | | | `at/batch' requires this. Obtained from: me && OpenBSD
* Hopefully better fix for logwtmp(): rename to a privatetg1997-09-053-7/+8
| | | | version ftpd_logwtmp().
* logwtmp() prototype is in <libutil.h>.tg1997-09-051-2/+1
|
* Fix botch with escaped characters, go back to using cgetstr().davidn1997-09-031-3/+3
| | | | | | For escaped characters used in modem strings, use double-backslashes in gettytab. PR: 4370
* Use cgetustr() since we handled special escapes ourselves.davidn1997-09-012-5/+5
| | | | | | Fix typo in escape parsing function. PR: 4370 Submitted by: sumii@is.s.u-tokyo.ac.jp
* Fix description of -t option.joerg1997-08-241-2/+2
| | | | | PR: 3382 Submitted by: furuta@sra.co.jp (Atsushi Furuta)
* Turn off hyphenation in this manpage so that .Xr macros, don't getsteve1997-08-231-1/+3
| | | | | | split between lines. PR: bin/4080
OpenPOWER on IntegriCloud