summaryrefslogtreecommitdiff
path: root/libexec/ftpd
diff options
context:
space:
mode:
authorPaul Traina <pst@FreeBSD.org>1996-09-21 18:01:23 +0000
committerPaul Traina <pst@FreeBSD.org>1996-09-21 18:01:23 +0000
commit39ea627d628db641e136eb08db4e5f3117642193 (patch)
treec1594dee9df21368508e76549bc4efae8bfa4225 /libexec/ftpd
parent0db7abdd7236050afb428b2480242b136401a0b6 (diff)
Notes
Diffstat (limited to 'libexec/ftpd')
-rw-r--r--libexec/ftpd/popen.c2
1 files changed, 1 insertions, 1 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) {