cmdtab.c: Update help message for passive mode so that it
authorTheodore Tso <tytso@mit.edu>
Fri, 2 Oct 1998 20:23:31 +0000 (20:23 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 2 Oct 1998 20:23:31 +0000 (20:23 +0000)
indicates that the "passive" command toggles passive mode.

main.c (main): Make passive mode off by default.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10956 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/gssftp/ftp/ChangeLog
src/appl/gssftp/ftp/cmdtab.c
src/appl/gssftp/ftp/main.c

index d389d990aa5ec3c1fa1cf493d6f09b79d1a9f023..786283c9c4ffbefe380bf0fe355580237e5f3168 100644 (file)
@@ -1,3 +1,10 @@
+Fri Oct  2 16:16:13 1998  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * cmdtab.c: Update help message for passive mode so that it
+               indicates that the "passive" command toggles passive mode.
+
+       * main.c (main): Make passive mode off by default.
+
 Fri Aug 28 18:46:35 1998  Geoffrey King  <gjking@mit.edu>
 
        * cmds.c (user): Replace "oldlevel" with the more descriptive
index cb61fc811c8d8e271778ad365f55d08cef9638bb..de572996f1ce8819cb65a4e8d696c15ab4c814b0 100644 (file)
@@ -137,7 +137,7 @@ char        umaskhelp[] =   "get (set) umask on remote side";
 char   userhelp[] =    "send new user information";
 char   verbosehelp[] = "toggle verbose mode";
 #ifndef NO_PASSIVE_MODE
-char   setpassivehelp[] = "enter passive transfer mode";
+char   setpassivehelp[] = "toggle passive transfer mode";
 #endif
 
 struct cmd cmdtab[] = {
index 2ba3a4cf7886a4d3fbb367294768a583e9a8e275..685c14758549206cceb9ad9174e7ca447a33115d 100644 (file)
@@ -175,7 +175,7 @@ main(argc, argv)
        cpend = 0;      /* no pending replies */
        proxy = 0;      /* proxy not active */
 #ifndef NO_PASSIVE_MODE
-       passivemode = 1; /* passive mode active */
+       passivemode = 0; /* passive mode not active */
 #endif
        crflag = 1;     /* strip c.r. on ascii gets */
        sendport = -1;  /* not using ports */