]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
* ftpcmd.y (nonguest): Return $1, not 1, if (!guest) krb5-1.1
authorTom Yu <tlyu@mit.edu>
Wed, 14 Jun 2000 22:41:09 +0000 (22:41 +0000)
committerTom Yu <tlyu@mit.edu>
Wed, 14 Jun 2000 22:41:09 +0000 (22:41 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-1@12388 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/gssftp/ftpd/ChangeLog
src/appl/gssftp/ftpd/ftpcmd.y

index ccce7581312754c1bb0e7f5184efbcc276e7a99f..583e47723b76c3ee60ba2c11a569737500026fbf 100644 (file)
@@ -1,3 +1,7 @@
+2000-06-14  Tom Yu  <tlyu@mit.edu>
+
+       * ftpcmd.y (nonguest): Return $1, not 1, if (!guest).
+
 1999-10-26  Tom Yu  <tlyu@mit.edu>
 
        * Makefile.in: Clean up usage of CFLAGS, CPPFLAGS, DEFS, DEFINES,
index acd187112e729be7eabdc6c847afd5a7cc54e41c..bc252190ea2e229f9a50b6d9bd66dc5a7d5a6832 100644 (file)
@@ -865,7 +865,7 @@ nonguest: check_login
                        $$ = 0;
                }
                else
-                       $$ = 1;
+                       $$ = $1;
        }
        ;
 %%