commit-inetutils
[Top][All Lists]
Advanced

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

[SCM] GNU Inetutils branch, master, updated. inetutils-1_9_1_100-2-g5f5


From: Mats Erik Andersson
Subject: [SCM] GNU Inetutils branch, master, updated. inetutils-1_9_1_100-2-g5f59063
Date: Wed, 25 Sep 2013 22:36:20 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Inetutils ".

The branch, master has been updated
       via  5f59063e2b5a9864250ab7473e5ba81ea4be817c (commit)
      from  3dc3bb447e058b7903b242ce231a27736c569066 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=5f59063e2b5a9864250ab7473e5ba81ea4be817c


commit 5f59063e2b5a9864250ab7473e5ba81ea4be817c
Author: Mats Erik Andersson <address@hidden>
Date:   Mon Sep 23 23:32:31 2013 +0200

    ftpd: Setting of idle time.
    
    The command to change idle time was broken.

diff --git a/ChangeLog b/ChangeLog
index 4f2b026..b40daf9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2013-09-23  Mats Erik Andersson  <address@hidden>
+
+       ftpd: Setting of idle time.
+       The command to change idle time was broken.
+
+       * ftpd/ftpcmd.y (cmd) <SITE IDLE NUMBER>: The token IDLE
+       must go before `check_login' to avoid a lookahead syntax
+       error.  Adjust the parameter reference for `check_login'.
+
 2013-09-19  Mats Erik Andersson  <address@hidden>
 
        ifconfig: Status and medium reports on BSD.
diff --git a/ftpd/ftpcmd.y b/ftpd/ftpcmd.y
index 5e126f5..451ce4d 100644
--- a/ftpd/ftpcmd.y
+++ b/ftpd/ftpcmd.y
@@ -497,9 +497,9 @@ cmd
                               "Current IDLE time limit is %d seconds; max %d",
                               timeout, maxtimeout);
                }
-       | SITE SP check_login IDLE SP NUMBER CRLF
+       | SITE SP IDLE check_login SP NUMBER CRLF
                {
-                       if ($3)
+                       if ($4)
                          {
                            if ($6 < 30 || $6 > maxtimeout)
                              reply (501,

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog     |    9 +++++++++
 ftpd/ftpcmd.y |    4 ++--
 2 files changed, 11 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU Inetutils 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]