diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-07-31 09:05:16 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-07-31 09:05:16 +0000 |
commit | f8a2b758ffe991a178b1954e1c67d690e0cef123 (patch) | |
tree | cc7de3ced5b19c9a2b3e85dd95b54b1bc22c4844 /libexec/rlogind | |
parent | a268b7918ae3a1efb4cad3be42fcb5d3227b55bd (diff) |
-a is dead; normal sized host buffer, de-constipate
Diffstat (limited to 'libexec/rlogind')
-rw-r--r-- | libexec/rlogind/rlogind.8 | 4 | ||||
-rw-r--r-- | libexec/rlogind/rlogind.c | 18 |
2 files changed, 8 insertions, 14 deletions
diff --git a/libexec/rlogind/rlogind.8 b/libexec/rlogind/rlogind.8 index 288b3789e28..b8341b43717 100644 --- a/libexec/rlogind/rlogind.8 +++ b/libexec/rlogind/rlogind.8 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)rlogind.8 8.1 (Berkeley) 6/4/93 -.\" $Id: rlogind.8,v 1.1 1995/10/18 08:43:20 deraadt Exp $ +.\" $Id: rlogind.8,v 1.2 1996/07/31 09:05:14 deraadt Exp $ .\" .Dd June 4, 1993 .Dt RLOGIND 8 @@ -51,8 +51,6 @@ with authentication based on privileged port numbers from trusted hosts. Options supported by .Nm rlogind : .Bl -tag -width Ds -.It Fl a -Ask hostname for verification. .It Fl l Prevent any authentication based on the user's .Dq Pa .rhosts diff --git a/libexec/rlogind/rlogind.c b/libexec/rlogind/rlogind.c index a777f7a4620..69004d7bc31 100644 --- a/libexec/rlogind/rlogind.c +++ b/libexec/rlogind/rlogind.c @@ -39,7 +39,7 @@ static char copyright[] = #ifndef lint /* from: static char sccsid[] = "@(#)rlogind.c 8.1 (Berkeley) 6/4/93"; */ -static char *rcsid = "$Id: rlogind.c,v 1.4 1996/04/17 07:21:18 tholo Exp $"; +static char *rcsid = "$Id: rlogind.c,v 1.5 1996/07/31 09:05:15 deraadt Exp $"; #endif /* not lint */ /* @@ -90,9 +90,9 @@ u_char tick_buf[sizeof(KTEXT_ST)]; Key_schedule schedule; int doencrypt, retval, use_kerberos, vacuous; -#define ARGSTR "alnkvx" +#define ARGSTR "lnkvx" #else -#define ARGSTR "aln" +#define ARGSTR "ln" #endif /* KERBEROS */ char *env[2]; @@ -101,7 +101,6 @@ char lusername[NMAX+1], rusername[NMAX+1]; static char term[64] = "TERM="; #define ENVSIZE (sizeof("TERM=")-1) /* skip null for concatenation */ int keepalive = 1; -int check_all = 0; struct passwd *pwd; @@ -132,9 +131,6 @@ main(argc, argv) opterr = 0; while ((ch = getopt(argc, argv, ARGSTR)) != EOF) switch (ch) { - case 'a': - check_all = 1; - break; case 'l': __check_rhosts_file = 0; break; @@ -197,7 +193,7 @@ doit(f, fromp) int master, pid, on = 1; int authenticated = 0; register struct hostent *hp; - char hostname[2 * MAXHOSTNAMELEN + 1]; + char hostname[MAXHOSTNAMELEN]; char c; alarm(60); @@ -215,9 +211,9 @@ doit(f, fromp) hp = gethostbyaddr((char *)&fromp->sin_addr, sizeof(struct in_addr), fromp->sin_family); if (hp) - (void)strcpy(hostname, hp->h_name); + strncpy(hostname, hp->h_name, sizeof hostname); else - (void)strcpy(hostname, inet_ntoa(fromp->sin_addr)); + strncpy(hostname, inet_ntoa(fromp->sin_addr), sizeof hostname); #ifdef KERBEROS if (use_kerberos) { @@ -225,7 +221,7 @@ doit(f, fromp) if (retval == 0) authenticated++; else if (retval > 0) - fatal(f, krb_err_txt[retval], 0); + fatal(f, (char *)krb_err_txt[retval], 0); write(f, &c, 1); confirmed = 1; /* we sent the null! */ } else |