renamed getmode() and setmode() to get_mode() and set_mode() to avoid a collision...
authorAlexandra Ellwood <lxs@mit.edu>
Tue, 29 Aug 2000 17:59:17 +0000 (17:59 +0000)
committerAlexandra Ellwood <lxs@mit.edu>
Tue, 29 Aug 2000 17:59:17 +0000 (17:59 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12633 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/gssftp/ftp/ChangeLog
src/appl/gssftp/ftp/cmds.c
src/appl/gssftp/ftp/cmdtab.c
src/appl/gssftp/ftp/ftp_var.h

index f319027d750ad1177000f2a2a6c4eaa7ba4c61d4..2424554f2c878103a17c5f6444e9fa1761fafcc3 100644 (file)
@@ -1,3 +1,10 @@
+2000-08-29  Alexandra Ellwood  <lxs@mit.edu>
+
+        * cmds.c, cmdtab.c, ftp_var.h: renamed getmode() and setmode()
+       to get_mode() and set_mode() to avoid a collision with Mac OS X
+       file permission bits manipulation functions of the same name
+       which get included through unistd.h.
+
 Tue Aug 22 17:10:39 2000  Ezra Peisach  <epeisach@mit.edu>
 
        * secure.h (myaddr): For secure data stream, pass the port number
index ca354be31315c5fd55260202ed6edc7f332fc505..d22bb71e59bc973c597cf75db4fbfa514b99d250 100644 (file)
@@ -588,7 +588,7 @@ void settenex()
 }
 
 static char *
-getmode()
+get_mode()
 {
        return("stream");
 }
@@ -597,12 +597,12 @@ getmode()
  * Set file transfer mode.
  */
 /*ARGSUSED*/
-void setmode(argc, argv)
+void set_mode(argc, argv)
        int argc;
        char *argv[];
 {
 
-       printf("We only support %s mode, sorry.\n", getmode());
+       printf("We only support %s mode, sorry.\n", get_mode());
        code = -1;
 }
 
@@ -1114,7 +1114,7 @@ static void cstatus()
        printf("Data Channel Protection Level: %s\n", getdlevel());
        printf("Passive mode %s\n", onoff(passivemode));
        printf("Mode: %s; Type: %s; Form: %s; Structure: %s\n",
-               getmode(), gettype(), getform(), getstruct());
+               get_mode(), gettype(), getform(), getstruct());
        printf("Store unique: %s; Receive unique: %s\n", onoff(sunique),
                onoff(runique));
        printf("Case: %s; CR stripping: %s\n",onoff(mcase),onoff(crflag));
index 77511cb976b010b8632a06ad166fc3d71cd5e84b..cfa11e371c454eac81e9e2f6555437e8436ac727 100644 (file)
@@ -156,7 +156,7 @@ struct cmd cmdtab[] = {
        { "mget",       mgethelp,       1,      1,      1,      mget },
        { "mkdir",      mkdirhelp,      0,      1,      1,      makedir },
        { "mls",        mlshelp,        1,      1,      1,      mls },
-       { "mode",       modehelp,       0,      1,      1,      setmode },
+       { "mode",       modehelp,       0,      1,      1,      set_mode },
        { "modtime",    modtimehelp,    0,      1,      1,      modtime },
        { "mput",       mputhelp,       1,      1,      1,      mput },
        { "newer",      newerhelp,      1,      1,      1,      newer },
index cc0080b1b234ed8da92bec20857285f012e1a1c2..99c5ea0b683849996cdd357d87714a1cdcc5d294 100644 (file)
@@ -162,7 +162,7 @@ void changetype PROTOTYPE((int, int));
 void setbinary PROTOTYPE((void));
 void setascii PROTOTYPE((void));
 void settenex PROTOTYPE((void));
-void setmode  PROTOTYPE((int, char **));
+void set_mode  PROTOTYPE((int, char **));
 void setform  PROTOTYPE((int, char **));
 void setstruct  PROTOTYPE((int, char **));
 void siteidle  PROTOTYPE((int, char **));