Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/libexec/ftpd missing "." on reply



details:   https://anonhg.NetBSD.org/src/rev/e9f0a428ccba
branches:  trunk
changeset: 480272:e9f0a428ccba
user:      lukem <lukem%NetBSD.org@localhost>
date:      Sat Jan 08 11:14:36 2000 +0000

description:
missing "." on reply

diffstat:

 libexec/ftpd/ftpd.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 48f2bea504bf -r e9f0a428ccba libexec/ftpd/ftpd.c
--- a/libexec/ftpd/ftpd.c       Sat Jan 08 11:09:56 2000 +0000
+++ b/libexec/ftpd/ftpd.c       Sat Jan 08 11:14:36 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ftpd.c,v 1.82 2000/01/08 11:09:56 lukem Exp $  */
+/*     $NetBSD: ftpd.c,v 1.83 2000/01/08 11:14:36 lukem Exp $  */
 
 /*
  * Copyright (c) 1997-2000 The NetBSD Foundation, Inc.
@@ -109,7 +109,7 @@
 #if 0
 static char sccsid[] = "@(#)ftpd.c     8.5 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: ftpd.c,v 1.82 2000/01/08 11:09:56 lukem Exp $");
+__RCSID("$NetBSD: ftpd.c,v 1.83 2000/01/08 11:14:36 lukem Exp $");
 #endif
 #endif /* not lint */
 
@@ -933,7 +933,7 @@
                if (! EMPTYSTR(curclass.limitfile))
                        (void)format_file(conffilename(curclass.limitfile),530);
                reply(530,
-                   "User %s access denied, connection limit of %d reached",
+                   "User %s access denied, connection limit of %d reached.",
                    pw->pw_name, curclass.limit);
                syslog(LOG_NOTICE,
        "Maximum connection limit of %d for class %s reached, login refused",



Home | Main Index | Thread Index | Old Index