aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorJacques Vidrine <nectar@FreeBSD.org>2005-04-05 18:25:27 +0000
committerJacques Vidrine <nectar@FreeBSD.org>2005-04-05 18:25:27 +0000
commit26f7774a47464ab57d2cb5c85fc02ad03b5fba38 (patch)
tree419b98f66eb5abe5d08a30ca56278b4f366ea137 /libexec
parentd7057edb150eb7a3720978d2493da48694d23904 (diff)
downloadsrc-26f7774a47464ab57d2cb5c85fc02ad03b5fba38.tar.gz
src-26f7774a47464ab57d2cb5c85fc02ad03b5fba38.zip
Correct type mismatch introduced in last commit.
Noticed by: Steve Kargl <sgk@troutmask.apl.washington.edu>
Notes
Notes: svn path=/head/; revision=144680
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rexecd/rexecd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rexecd/rexecd.c b/libexec/rexecd/rexecd.c
index 18149fe4222b..02c6843cfdcf 100644
--- a/libexec/rexecd/rexecd.c
+++ b/libexec/rexecd/rexecd.c
@@ -139,7 +139,7 @@ doit(struct sockaddr *fromp)
char user[16], pass[16];
struct passwd *pwd, pwd_storage;
char *pwdbuf;
- int pwdbuflen;
+ size_t pwdbuflen;
int fd, r, sd;
u_short port;
int pv[2], pid, cc, nfds;