diff options
author | nectar <nectar@FreeBSD.org> | 2005-04-05 18:25:27 +0000 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2005-04-05 18:25:27 +0000 |
commit | 816af95a7739095349368133fb4db2b579901b86 (patch) | |
tree | 419b98f66eb5abe5d08a30ca56278b4f366ea137 /libexec | |
parent | b0c9c2a388749a17c7e53ec55d5cfc76fa1eefc2 (diff) | |
download | FreeBSD-src-816af95a7739095349368133fb4db2b579901b86.zip FreeBSD-src-816af95a7739095349368133fb4db2b579901b86.tar.gz |
Correct type mismatch introduced in last commit.
Noticed by: Steve Kargl <sgk@troutmask.apl.washington.edu>
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/rexecd/rexecd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rexecd/rexecd.c b/libexec/rexecd/rexecd.c index 18149fe..02c6843 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; |