aboutsummaryrefslogtreecommitdiff
path: root/libexec/ftpd
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1994-09-20 15:53:30 +0000
committerDavid Greenman <dg@FreeBSD.org>1994-09-20 15:53:30 +0000
commit348c7a12508000b919c5e40497a2254065105d82 (patch)
tree83ba7cddc45ee42a3ccab7ed2de2943731df4ed9 /libexec/ftpd
parentedee6d38167c68f5317a21a66190efe37157cd52 (diff)
Notes
Diffstat (limited to 'libexec/ftpd')
-rw-r--r--libexec/ftpd/ftpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c
index 5d6fab592c57..ce9ac594a9c9 100644
--- a/libexec/ftpd/ftpd.c
+++ b/libexec/ftpd/ftpd.c
@@ -500,7 +500,7 @@ checkuser(name)
*p = '\0';
if (line[0] == '#')
continue;
- if (strcmp(p, name) == 0) {
+ if (strcmp(line, name) == 0) {
found = 1;
break;
}