summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2013-07-03 14:16:01 +0000
committerchristos <christos@NetBSD.org>2013-07-03 14:16:01 +0000
commit72e1bae3af47f8a78b6a9e42ebc14e4aab2ac30f (patch)
treec0613ad66dee2881dfe630fa9e01407661aba473 /libexec
parentad6b30d9753066c61782282b80da56a6ac44e33b (diff)
remove unneeded initialization.
Diffstat (limited to 'libexec')
-rw-r--r--libexec/ftpd/ftpd.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c
index 113f868f1d1..04dc930a710 100644
--- a/libexec/ftpd/ftpd.c
+++ b/libexec/ftpd/ftpd.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ftpd.c,v 1.198 2012/06/19 06:06:34 dholland Exp $ */
+/* $NetBSD: ftpd.c,v 1.199 2013/07/03 14:16:01 christos Exp $ */
/*
* Copyright (c) 1997-2009 The NetBSD Foundation, Inc.
@@ -97,7 +97,7 @@ __COPYRIGHT("@(#) Copyright (c) 1985, 1988, 1990, 1992, 1993, 1994\
#if 0
static char sccsid[] = "@(#)ftpd.c 8.5 (Berkeley) 4/28/95";
#else
-__RCSID("$NetBSD: ftpd.c,v 1.198 2012/06/19 06:06:34 dholland Exp $");
+__RCSID("$NetBSD: ftpd.c,v 1.199 2013/07/03 14:16:01 christos Exp $");
#endif
#endif /* not lint */
@@ -2830,7 +2830,6 @@ reply(int n, const char *fmt, ...)
size_t b;
va_list ap;
- b = 0;
if (n == 0)
b = snprintf(msg, sizeof(msg), " ");
else if (n < 0)