summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make tset works with non-fixed termios speeds too.ache1995-08-043-61/+8
| | | | Eliminate ospeed switch using new _set_ospeed function
* Add non-standard function: _set_ospeed(speed)ache1995-08-044-6/+89
| | | | | | | | | Basically all termios+termcap pgms needs it. It set ospeed variable using nearest-matched stty speeds, which helps termcap pgms works with non-fixed termios speeds and not duplicate ospeed switch into every pgm. Also it isn't standard function, its source code is too big to include it in whole to every termcap+termios pgm.
* Use the correct flags (IO_SYNC -> B_SYNC) when deciding to do a sync ordg1995-08-041-3/+3
| | | | | | | async write in the section that changes the filesize. The bug resulted in the updates always being async. Obtained from: 4.4BSD-Lite2
* Nuke one __FreeBSD__ left outache1995-08-042-6/+6
| | | | | | Reviewed by: Submitted by: Obtained from:
* Remove IMAXBEL clearing, our cfmakeraw() already fixed for itache1995-08-041-1/+0
| | | | | | Reviewed by: Submitted by: Obtained from:
* Change default banner to FreeBSD, properly ifdefed by __FreeBSD__ache1995-08-042-2/+10
| | | | | | Reviewed by: Submitted by: Obtained from:
* Since krb_prob conflicts with registered tell protocol,ache1995-08-041-1/+3
| | | | mark tell section with #PROBLEMS comment
* Back out speed reducing to 38400 for old remote rlogind.ache1995-08-031-3/+1
| | | | | | | I do some digging out on this subject and found that remote rlogind may reduce big speeds to 38400 by itself and (as more often rlogind variant) speed setting ioctl fails, so speed left on 9600. In all cases it doesn't do any real harm.
* Add ftp://ftp.synapse.net/contrib/FreeBSDjkh1995-08-031-1/+4
|
* Update manual page to reflect "empty password" usage.pst1995-08-033-9/+9
|
* Make sure that a non-null cookie vector is returned even if there were nodfr1995-08-032-2/+18
| | | | valid entries in the block. Doing otherwise confuses the nfs server.
* Slight changes to locking around VOP_READRIR.dfr1995-08-032-4/+36
| | | | | Detect in nfsrv_readdirplus when a filesystem soes not support VFS_VGET and return NFSERR_NOTSUPP so that the client will use ordinary readdir instead.
* Sanitize the PGP strings a bit.phk1995-08-031-9/+10
|
* Back this change out. It's just not worth arguing over and any further emailsjkh1995-08-032-35/+4
| | | | | | I get on this topic will go straight to /dev/null. This is absolutely the last word on this topic you'll see from me. Too much time has already been wasted.
* Make arp command actually behave as documented with the addition of a -fjkh1995-08-031-1/+6
| | | | | | | | | flag. The getopt handling in here is actually pretty bogus (not Phil's fault - it's original sin) but the general approach is working so I'm not going to break it. Some small tweaks of my own to add error checking to what was originally submitted. Strange how nobody noticed that the flag was documented but completely missing from the code before! [jkh]. Submitted by: Phil Taylor <phil@zipmail.co.uk>
* Remove ftp.ctr.vt.edu at the request of the mirror maintainer.jkh1995-08-031-4/+1
|
* Null password should ask for randompst1995-08-022-6/+6
|
* Make the DB/DBM routines generic (ifdef FreeBSD considered evil), andpst1995-08-026-56/+72
| | | | | | also fix a string allocation bug. Submitted by: Havard Eidnes
* Use lorder/tsort for shared libraries. It might help group things better.dg1995-08-021-2/+2
| | | | Suggested by Garrett Wollman.
* Add krb_prop entry.pst1995-08-021-1/+2
|
* This commit was generated by cvs2svn to compensate for changes in r9866,pst1995-08-024-0/+912
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Program to receive and process a new kerberos database (this is run onpst1995-08-024-0/+912
| | | | | | | | | | | | | | | | | | | | | | the slave server). NOTE: This code should not be built, there is no documentation, and this method of database transfer is highly suboptimal. It's here just for those of us who actually have multiple K4 servers and want something more secure than the other distribution mechanisms. Obtained from: MIT Project Athena
* | This commit was generated by cvs2svn to compensate for changes in r9864,pst1995-08-026-0/+1296
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import an updated revision of the MIT kprop program for distributingpst1995-08-026-0/+1296
| | | | | | | | | | | | | | | | | | | | | | kerberos databases to slave servers. NOTE: This method was abandoned by MIT long ago, this code is close to garbage, but it is slightly more secure than using rdist. There is no documentation available on how to use it, and it should -not- be built by default. Obtained from: MIT Project Athena
* | Make kadmind safe to run on multi-homed machines.gibbs1995-08-026-6/+33
| | | | | | | | Reviewed by: Garrett A. Wollman (wollman@FreeBSD.org)
* | Add support for the va_filerev attribute required by NFSv3.dfr1995-08-028-8/+52
| |
* | Preserve current termios speed for TIOCSET*, if it matched withache1995-08-021-3/+7
| | | | | | | | | | nearest valid. It means that gtty+stty transaction (without speed change) not breaks non-standard speeds now.
* | Change default banner fro 4.4 BSD to FreeBSD.paul1995-08-021-1/+1
| | | | | | | | | | | | Reviewed by: Submitted by: Obtained from:
* | Better approximation for TIOCGETP (gtty) for non-standard speeds.ache1995-08-021-9/+18
| | | | | | | | | | | | Old variant returns 38400 for them, now it returns nearest matched rounded down, expect speeds in range 0 > speed < 50 rounded up to not produce hangup.
* | Back out predefined termios speeds check, it can cause troublesache1995-08-021-28/+1
| | | | | | | | | | | | with interaction pty <-> serial driver with non-standard speed. So, nothing protect us from garbadge in speed field, expect checking for < 0 left in tty.c :-(
* | Use the same DECODE_BAUD trick like in new telnetd to obtainache1995-08-021-0/+17
| | | | | | | | | | termios speed. Obtained from: Pre-Lite2 telnet
* | Use the same DECODE_BAUD trick like in new telnet to setache1995-08-021-0/+16
| | | | | | | | | | termios speed Obtained from: Pre-Lite2 telnet
* | Allow any speed from 0..76800ache1995-08-024-56/+16
| | | | | | | | | | | | Reviewed by: Submitted by: Obtained from:
* | Lock the directory vnode before VOP_READDIR in nfsrv_readdirplusdfr1995-08-022-2/+6
| |
* | Reviewed by: David Greenmanwpaul1995-08-021-14/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Back out the 'help NIS rebind faster' hack. This change used a connect()/send() pair rather than the original sendto() to allow RPC to pass ICMP host unreachable and similar errors up to RPC programs that use UDP. This is not a terrible thing by itself, but it can cause trouble in environments with multi-homed hosts: if the portmapper on the multi-homed machine sends a reply with a source address that's different than the one associated with the connection by connect(), the kernel will send a port unreachable message and drop the reply. For the sake of compatibility with everybody else on the planet, it's best to revert to the old behavior. *long, heavy sigh*
* | Submitted by: Wolfram Schneider <w@cs.tu-berlin.de>asami1995-08-021-2/+2
| | | | | | | | | | The currently (1995/07/31 04:22:07) implemented if (-x "$prog") { works only if you have '.' in your $PATH variable.
* | Check for valid speed values in pty driveache1995-08-023-28/+38
| | | | | | | | | | | | Check for negative speed values in tty drive Back out valid speed values checking from tty drive Suggested by: bde
* | Don't set TS_ZOMBIE flag for non-open ptys. ptcclose() has always donebde1995-08-021-4/+6
| | | | | | | | | | | | too much for non-open ptys, but there is normally no problem because the l_modem(, 0) is a no-op for closed ptys provided the line discipline is standard and MDMBUF isn't set.
* | Remove top secret version information from the banner by default.jkh1995-08-021-1/+1
| | | | | | | | Loose lips sink ships! Man the firewall and look alert!
* | Optimize a bit valid speed search using fact that speed table sortedache1995-08-011-1/+5
| | | | | | | | | | Submitted by: Obtained from:
* | Check for valid speeds in TIOCSET* and return EINVAL for incorrectache1995-08-012-8/+23
| | | | | | | | values instead of setting garbadge.
* | Make strtod conforms manpage, use isspace to skip initial whitespacesache1995-08-011-7/+3
| | | | | | | | instead of hardcoded whitespaces
* | Similar changes like in strtol, all this family is VERY brokenache1995-08-015-5/+15
| | | | | | | | in 8bit environment (isalpha at the end of digits)
* | Add the maybe_stripped to a CLEANFILES target to get a clean obj directoryats1995-08-011-0/+1
| | | | | | | | after a clean or cleandir.
* | strtol and atoi VERY broken in 8bit chars locale, i.e. if you pass somethingache1995-08-011-1/+3
| | | | | | | | | | | | like 38400<any 8bit char, isalpha> it not detect this stuff and produce very big number instead. Fixed by operating with unsigned char and checking for isascii. (secure/telnetd hits by it f.e.)
* | Removed my special-case hack for VOP_LINK and fixed the problem with thedg1995-08-0117-173/+53
| | | | | | | | | | | | | | wrong vp's ops vector being used by changing the VOP_LINK's argument order. The special-case hack doesn't go far enough and breaks the generic bypass routine used in some non-leaf filesystems. Pointed out by Kirk McKusick.
* | Add device support for the Matrox Meteor.jkh1995-08-012-2/+18
| | | | | | | | Submitted by: james
* | Tweak the default entry a little to take advantage of new gettyjkh1995-08-011-1/+1
| | | | | | | | feature.
* | A useful aid.. Add support for:jkh1995-08-012-4/+35
| | | | | | | | | | | | | | | | %r: current release %m: machine architecture type (i386 for now) %s: OS name (FreeBSD) from uname() in banner string.
* | Round this out. Now seems to transfer packages properly over ftpjkh1995-08-011-14/+18
| | | | | | | | | | as it was supposed to. PKG_PATH more sorely needed than ever now.. Hmmmm.
OpenPOWER on IntegriCloud