Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Key is 8 bytes according to code, not 10 as stated in man page. Add rcsid. | charnier | 1997-11-24 | 2 | -5/+7 |
| | |||||
* | Use err(3) instead of local redefinition. Add usage. -Wall cleaning. | charnier | 1997-11-24 | 5 | -93/+79 |
| | |||||
* | Correct incompletes .Xrs. Remove duplicate #includes and unused variables. | charnier | 1997-11-21 | 7 | -52/+58 |
| | |||||
* | Use err(3). -Wall cleaning. | charnier | 1997-11-21 | 2 | -15/+17 |
| | |||||
* | Cosmetics in man page. Exit(-1) -> exit(1). | charnier | 1997-11-21 | 6 | -30/+36 |
| | |||||
* | Add const to copyright string. Put sccsid under #if 0/#endif control. | charnier | 1997-11-20 | 2 | -7/+7 |
| | |||||
* | Use err(3). exit(-1) -> exit(1). | charnier | 1997-11-20 | 1 | -11/+11 |
| | |||||
* | Cosmetic in error strings. Sort Xrefs. Add usage (with syslog capability). | charnier | 1997-11-20 | 3 | -55/+67 |
| | |||||
* | Log the request from the remote side, in addition to it having happened. | sef | 1997-11-14 | 1 | -13/+27 |
| | | | | Reviewed by: julian | ||||
* | Switch the effective uid to that of the user when writing mail files, | alex | 1997-11-13 | 1 | -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 avoid | wosch | 1997-10-11 | 2 | -4/+4 |
| | | | | | a possible disk overflow for enormous large mails. Submitted by: grog | ||||
* | PR: bin/771 and bin/1037 are resolved by this change | uhclem | 1997-10-08 | 1 | -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. | imp | 1997-10-06 | 1 | -1/+5 |
| | |||||
* | Changes to support full make parallelism (-j<n>) in the world | jkh | 1997-10-05 | 1 | -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 database | wpaul | 1997-09-30 | 1 | -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. | markm | 1997-09-28 | 1 | -7/+2 |
| | |||||
* | There is a clear separation of the crypto telnet and the non-crypto telnet. | markm | 1997-09-28 | 1 | -4/+0 |
| | | | | | As this is the non-crypto version, remove the useless (commented out) directives and macros. | ||||
* | Changes for the new KTH Kerberos4. | markm | 1997-09-28 | 2 | -16/+21 |
| | | | | Also make -Wall a bit quieter | ||||
* | Changes for the new KTH Kerberos. | markm | 1997-09-28 | 2 | -12/+26 |
| | | | | Also make -Wall a bit quieter. | ||||
* | Many places in the code NULL is used in integer context, where | phk | 1997-09-18 | 4 | -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 too | ache | 1997-09-15 | 1 | -2/+2 |
| | |||||
* | disable upper controls and enable all other | ache | 1997-09-15 | 1 | -11/+15 |
| | | | | 8bit codes due to lack of locale knowledge in daemon | ||||
* | -p flag misdocumented in telnetd(8) | wosch | 1997-09-14 | 1 | -3/+3 |
| | | | | | PR: 4462 Submitted by: hfir@math.rochester.edu | ||||
* | spelling corrections. | wosch | 1997-09-13 | 3 | -9/+9 |
| | | | | | PR: docs/4450 Submitted by: josh@quick.net | ||||
* | Do setlogin() before changing uid/gid, since | dima | 1997-09-08 | 1 | -11/+17 |
| | | | | | | `at/batch' requires this. Obtained from: me && OpenBSD | ||||
* | Hopefully better fix for logwtmp(): rename to a private | tg | 1997-09-05 | 3 | -7/+8 |
| | | | | version ftpd_logwtmp(). | ||||
* | logwtmp() prototype is in <libutil.h>. | tg | 1997-09-05 | 1 | -2/+1 |
| | |||||
* | Fix botch with escaped characters, go back to using cgetstr(). | davidn | 1997-09-03 | 1 | -3/+3 |
| | | | | | | For escaped characters used in modem strings, use double-backslashes in gettytab. PR: 4370 | ||||
* | Use cgetustr() since we handled special escapes ourselves. | davidn | 1997-09-01 | 2 | -5/+5 |
| | | | | | | Fix typo in escape parsing function. PR: 4370 Submitted by: sumii@is.s.u-tokyo.ac.jp | ||||
* | Fix description of -t option. | joerg | 1997-08-24 | 1 | -2/+2 |
| | | | | | PR: 3382 Submitted by: furuta@sra.co.jp (Atsushi Furuta) | ||||
* | Turn off hyphenation in this manpage so that .Xr macros, don't get | steve | 1997-08-23 | 1 | -1/+3 |
| | | | | | | split between lines. PR: bin/4080 | ||||
* | change -I/sys to -I${.CURDIR}/../../sys | jmg | 1997-08-22 | 1 | -2/+2 |
| | |||||
* | - In dlsym(), if the lookup fails using the original symbol, prepend an | nate | 1997-08-19 | 1 | -2/+30 |
| | | | | | | | underscore and try looking it up again. This is a non-issue if we switch to ELF. Reviewed by: sef, jdp | ||||
* | .Nm --> .Xr so that gettytab(5) is shown instead of gettytab 5. | steve | 1997-08-17 | 1 | -2/+2 |
| | | | | PR: bin/4079 | ||||
* | Makefile.dist is a non-bmaked version of Makefile. We don't want it. | bde | 1997-08-02 | 1 | -14/+0 |
| | |||||
* | This commit was generated by cvs2svn to compensate for changes in r27847, | bde | 1997-08-02 | 1 | -0/+14 |
|\ | | | | | | | which included commits to RCS files with non-trunk default branches. | ||||
| * | Import Lite2's src/libexec, except for makekey (which was spammed | bde | 1997-08-02 | 34 | -203/+2698 |
| | | | | | | | | | | | | by a repository copy from 1.1.5 and patched back to Lite1) and rbootd/bootdir/SYSHPBSD (which is binary). All changed files have already left the vendor branch. | ||||
* | | Implement dlsym(RTLD_NEXT, symbol). | jdp | 1997-08-02 | 1 | -12/+64 |
| | | |||||
* | | Make useage of hostname global variable consistent. | davidn | 1997-07-24 | 2 | -7/+8 |
| | | | | | | | | | | PR: 4135 Based on submitted patch by: blank@fox.uni-trier.de | ||||
* | | Rshd print to much information if a user does not exists. | wosch | 1997-07-18 | 2 | -8/+7 |
| | | |||||
* | | kill the undead | peter | 1997-07-13 | 1 | -54/+0 |
| | | |||||
* | | .if exists(../eBones) tests the obj dir, not the source dir's existance. | peter | 1997-07-05 | 1 | -2/+2 |
| | | | | | | | | The existance of a stale obj dir does not imply the source too. | ||||
* | | Zap register keyword usage and convert: bcopy -> memmove, bzero -> memset, | steve | 1997-06-29 | 6 | -56/+56 |
| | | | | | | | | index -> strchr, and rindex -> strrchr. | ||||
* | | Merge conflicts and make this compile -Wall clean. | steve | 1997-06-29 | 12 | -131/+45 |
| | | |||||
* | | This commit was generated by cvs2svn to compensate for changes in r27074, | steve | 1997-06-29 | 7 | -129/+147 |
|\ \ | | | | | | | | | | which included commits to RCS files with non-trunk default branches. | ||||
| * | | Import of NetBSD's rbootd version 19970629 | steve | 1997-06-29 | 12 | -235/+193 |
| | | | |||||
* | | | Removed unused variables. | alex | 1997-06-27 | 1 | -4/+1 |
| | | | |||||
* | | | Submitted by: Gene Stark and Robert Sexton (robert@kudra.com) | stark | 1997-06-24 | 2 | -10/+17 |
| | | | | | | | | | | | | | | | Added patches from Robert Sexton to eliminate case sensitivity of the xtend command. | ||||
* | | | Show the real revision date and not the date that this | steve | 1997-06-23 | 2 | -4/+4 |
| | | | | | | | | | | | | manpage is being viewed. | ||||
* | | | Reset alarm before invoking ppplogin. | davidn | 1997-06-03 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | | | | | | PR: 3733 Reviewed by: Submitted by: kfurge@worldnet.att.net Obtained from: |