summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorJacques Vidrine <nectar@FreeBSD.org>2005-04-07 19:26:35 +0000
committerJacques Vidrine <nectar@FreeBSD.org>2005-04-07 19:26:35 +0000
commit5c929a0c96deee3556062b589a4cc3a716ded578 (patch)
tree4d936cd75bf9743b0057e10836070a4f8b186465 /libexec
parent7ca67a6885c324da4180fdc2fa8aa6a5e93fd81e (diff)
Notes
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rexecd/rexecd.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libexec/rexecd/rexecd.c b/libexec/rexecd/rexecd.c
index 02c6843cfdcf..05470ff0f064 100644
--- a/libexec/rexecd/rexecd.c
+++ b/libexec/rexecd/rexecd.c
@@ -136,9 +136,9 @@ doit(struct sockaddr *fromp)
{
char *cmdbuf, *cp;
int maxcmdlen;
- char user[16], pass[16];
+ char userbuf[16], pass[16];
struct passwd *pwd, pwd_storage;
- char *pwdbuf;
+ char *pwdbuf, *user;
size_t pwdbuflen;
int fd, r, sd;
u_short port;
@@ -189,7 +189,8 @@ doit(struct sockaddr *fromp)
if (connect(sd, fromp, fromp->sa_len) < 0)
exit(1);
}
- getstr(user, sizeof(user), "username");
+ user = userbuf;
+ getstr(userbuf, sizeof(userbuf), "username");
getstr(pass, sizeof(pass), "password");
getstr(cmdbuf, maxcmdlen, "command");
(void) alarm(0);