diff options
| author | Paul Traina <pst@FreeBSD.org> | 1996-09-21 18:01:23 +0000 |
|---|---|---|
| committer | Paul Traina <pst@FreeBSD.org> | 1996-09-21 18:01:23 +0000 |
| commit | 39ea627d628db641e136eb08db4e5f3117642193 (patch) | |
| tree | c1594dee9df21368508e76549bc4efae8bfa4225 /libexec | |
| parent | 0db7abdd7236050afb428b2480242b136401a0b6 (diff) | |
Notes
Diffstat (limited to 'libexec')
| -rw-r--r-- | libexec/ftpd/popen.c | 2 | ||||
| -rw-r--r-- | libexec/rlogind/rlogind.c | 2 | ||||
| -rw-r--r-- | libexec/rshd/rshd.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libexec/ftpd/popen.c b/libexec/ftpd/popen.c index 90a39cbf044c..cdb60651de11 100644 --- a/libexec/ftpd/popen.c +++ b/libexec/ftpd/popen.c @@ -70,7 +70,7 @@ ftpd_popen(program, type) int argc, gargc, pdes[2], pid; char **pop, *argv[100], *gargv[1000]; - if (*type != 'r' && *type != 'w' || type[1]) + if (((*type != 'r') && (*type != 'w')) || type[1]) return (NULL); if (!pids) { diff --git a/libexec/rlogind/rlogind.c b/libexec/rlogind/rlogind.c index 2113ccd040f2..81b0ddc584b5 100644 --- a/libexec/rlogind/rlogind.c +++ b/libexec/rlogind/rlogind.c @@ -697,7 +697,7 @@ do_krb_login(dest) authopts, 0, ticket, "rcmd", instance, dest, (struct sockaddr_in *) 0, - kdata, "", (bit_64 *) 0, version); + kdata, "", NULL, version); if (rc != KSUCCESS) return (rc); diff --git a/libexec/rshd/rshd.c b/libexec/rshd/rshd.c index daa9a132014e..6a2b12d7fbff 100644 --- a/libexec/rshd/rshd.c +++ b/libexec/rshd/rshd.c @@ -397,7 +397,7 @@ doit(fromp) rc = krb_recvauth(authopts, 0, ticket, "rcmd", instance, &fromaddr, (struct sockaddr_in *) 0, - kdata, "", (bit_64 *) 0, version); + kdata, "", NULL, version); if (rc != KSUCCESS) { error("Kerberos authentication failure: %s\n", krb_err_txt[rc]); |
