summaryrefslogtreecommitdiffstats
path: root/usr.bin/rsh
Commit message (Collapse)AuthorAgeFilesLines
* Check for FD_SET overrun.nectar2002-09-091-0/+4
|
* If a timeout is specified, make sure that rcmd() completes withiniedowse2002-08-131-0/+18
| | | | | | | | | | the specified time. Previously, rsh could potentially hang indefinitely at this point even when a timeout was set, for example if the server accepts the connection and then never sends any reply. PR: bin/20042 Submitted by: Keith White <Keith.White@site.uottawa.ca> MFC after: 1 week
* Use <paths.h> rather than "pathnames.h", and fix a couple of whitespace nits.des2002-05-083-42/+10
| | | | Sponsored by: DARPA, NAI Labs
* Use `The .Nm utility'charnier2002-04-201-4/+6
|
* Replaced exists() tests with two equivalent defined().ru2002-04-181-1/+1
| | | | | LIBDIR is defined in bsd.own.mk but sys.mk no longer includes bsd.own.mk as of revision 1.60.
* Const what I could on a first pass.obrien2002-03-301-7/+9
|
* Very simple fixes; WARNS and ANSIfy. Remove GCC-specific options frommarkm2002-03-232-20/+11
| | | | Makefile.
* remove __Pimp2002-03-221-4/+4
|
* Set BINOWN=root explicitly for setuid root binaries.ru2001-09-131-0/+1
| | | | | | This is not "useless", as one may have non-default setting for BINOWN in make.conf, and we still want these to be installed setuid root in this case.
* Use STD{ERR,IN,OUT}_FILENO instead of their numeric values. Thesheldonh2001-07-261-2/+2
| | | | | | | definitions are more readable, and it's possible that they're more portable to pathalogical platforms. Submitted by: David Hill <david@phobia.ms>
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* mdoc(7) police: sort SEE ALSO xrefs (sort -b -f +2 -3 +1 -2).ru2001-07-061-1/+1
|
* [rsh.1] Document the `-4' and `-6' options.jkoshy2000-11-242-2/+6
| | | | [rsh.c] Make usage message match the code.
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-1/+1
|
* remove trailing periods from SEE ALSO.ben2000-11-151-1/+1
|
* Fix a bug in rsh that caused the remote process to hang waiting onbsd2000-04-011-0/+2
| | | | | | | input even if the '-n' flag to rsh is used. The write side of the socket should be closed to allow the remote process to see EOF. Submitted by: Brad Chisholm <sasblc@unx.sas.com>
* Buildworld fixes for NO_OPENSSH and NO_OPENSSLkris2000-03-091-1/+1
| | | | Approved by: jkh
* Use libcrypto in place of libdes.markm2000-02-242-3/+3
|
* Add -4 and -6 options.shin2000-02-151-6/+16
| | | | | | | | | Current getaddrinfo() implemetation has a problem of too much resolving waiting time on INET6 enabled systems. -4 and -6 options can limit name resolving address family and is a possible workaround for the problem. Approved by: jkh
* several tcp apps IPv6 updateshin2000-01-251-2/+4
| | | | | | | | | | | | -inetd -rshd -rlogind -telnetd -rsh -rlogin Reviewed by: freebsd-arch, cvs-committers Obtained from: KAME project
* . mdoc(7)'fyphantom2000-01-071-1/+3
| | | | | | | | . add Xrs to hosts.equiv(5), auth.conf(5), services(5) to some pages . sort Xrs in SEE ALSO sections Patches based on PR: docs/15680 Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de>
* Revert the libcrypt/libmd stuff back to how it was. This should not havepeter1999-12-181-2/+2
| | | | | | | | happened as it was working around problems elsewhere (ie: binutils/ld not doing the right thing according to the ELF design). libcrypt has been adjusted to not need the runtime -lmd. It's still not quite right (ld is supposed to work damnit) but at least it doesn't impact all the users of libcrypt in Marcel's cross-build model.
* Add libmd (or move it after libcrypt). We don't want the linker to bemarcel1999-12-161-2/+2
| | | | | smart because it will definitely get it wrong. This popped up during cross-linking.
* add argumentscharnier1999-11-021-9/+13
|
* mdoc(7)'fyphantom1999-10-301-7/+7
|
* Change edistribution to krb4 in preaparation for K5markm1999-09-191-1/+1
|
* Fix for new Kerberos4.markm1999-09-191-1/+2
|
* Fix Common Error brokenness.markm1999-09-061-2/+2
|
* $Id$ -> $FreeBSD$peter1999-08-283-3/+3
|
* Add $Id$, to make it simpler for members of the translation teams tonik1999-07-121-0/+1
| | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde
* Don't use an arbitrary hardcoded value for nfds in select() calls.des1999-02-101-6/+8
| | | | PR: bin/9986
* Use KJH's auth.conf parser to turn on/off Kerberos in userland.markm1998-10-093-4/+12
|
* Remove useless `BINOWN=root' now that it is the default.obrien1998-09-191-2/+1
|
* Add -lcrypt when building kerberos.jb1998-09-051-3/+3
|
* Fix LIBDIR (for aout/ELF).markm1998-08-061-1/+2
|
* Add const to rcsid.charnier1998-03-231-2/+2
|
* Initialise variable that gcc lies awake at night worrying about.jb1998-02-201-2/+2
|
* Changes for KTH KerberosIV.markm1997-09-282-14/+20
| | | | Also quieten -Wall a bit.
* Use err(3) instead of local definition.charnier1997-08-072-51/+25
| | | | Cosmetic in man page: do not start describing a flag with `The option -X ..'.
* compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-291-2/+2
| | | | posix standard on the topic.
* Revert $FreeBSD$ to $Id$peter1997-02-221-1/+1
|
* Sort cross references.wosch1997-01-151-3/+3
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-141-1/+1
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* Add a timeout flag so that failing operations can at least be caughtjkh1996-09-062-9/+33
| | | | | and flagged. Closes PR#1513 Submitted-By: David Muir Sharnoff <muir@idiom.com>
* #include <kerberosIV/des.h> -> #include <des.h>markm1996-02-111-2/+2
|
* Rename des_set_key -> des_set_key. (libdes conflict)markm1996-02-031-2/+2
|
* Section FILES and SEE ALSO completewosch1996-01-291-1/+7
|
* Kerberos can now deal with multi-homed clients.gibbs1995-10-051-2/+2
| | | | | | | | | | | | | | Kerberos obtains a network address for the local host from the routing tables and uses it consistently for all Kerberos transactions. This ensures that packets only leave the *authenticated* interface. Clients who open and use their own sockets for encrypted or authenticated correspondance to kerberos services should bind their sockets to the same address as that used by kerberos. krb_get_local_addr() and krb_bind_local_addr() allow clients to obtain the local address or bind a socket to the local address used by Kerberos respectively. Reviewed by: Mark Murray <markm>, Garrett Wollman <wollman> Obtained from: concept by Dieter Dworkin Muller <dworkin@village.org>
* Remove trailing whitespace.rgrimes1995-05-301-2/+2
|
* Fix Sharnoff complain bin/136 (-e flag doesn't work).wollman1995-01-141-9/+7
|
OpenPOWER on IntegriCloud