[BACK]Return to commands.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / telnet

Diff for /src/usr.bin/telnet/commands.c between version 1.40 and 1.41

version 1.40, 2002/02/16 21:27:54 version 1.41, 2002/02/17 17:20:49
Line 232 
Line 232 
   
   
 static int  static int
         send_esc P((void)),          send_esc(void),
         send_help P((void)),          send_help(void),
         send_docmd P((char *)),          send_docmd(char *),
         send_dontcmd P((char *)),          send_dontcmd(char *),
         send_willcmd P((char *)),          send_willcmd(char *),
         send_wontcmd P((char *));          send_wontcmd(char *);
   
 static struct sendlist Sendlist[] = {  static struct sendlist Sendlist[] = {
     { "ao",     "Send Telnet Abort output",             1, 0, 0, 2, AO },      { "ao",     "Send Telnet Abort output",             1, 0, 0, 2, AO },
Line 602 
Line 602 
 }  }
   
   
 static int togglehelp P((void));  static int togglehelp(void);
 #if     defined(AUTHENTICATION)  #if     defined(AUTHENTICATION)
 extern int auth_togdebug P((int));  extern int auth_togdebug(int);
 #endif  #endif
 #if    defined(ENCRYPTION)  #if    defined(ENCRYPTION)
 extern int EncryptAutoEnc P((int));  extern int EncryptAutoEnc(int);
 extern int EncryptAutoDec P((int));  extern int EncryptAutoDec(int);
 extern int EncryptDebug P((int));  extern int EncryptDebug(int);
 extern int EncryptVerbose P((int));  extern int EncryptVerbose(int);
 #endif  #endif
   
   
Line 1539 
Line 1539 
         int     narg;          int     narg;
 };  };
   
 static void     env_help P((void));  static void     env_help(void);
   
 struct envlist EnvList[] = {  struct envlist EnvList[] = {
     { "define", "Define an environment variable",      { "define", "Define an environment variable",
Line 1887 
Line 1887 
 };  };
   
 static int  static int
         auth_help P((void));          auth_help(void);
   
 struct authlist AuthList[] = {  struct authlist AuthList[] = {
     { "status", "Display current status of authentication information",      { "status", "Display current status of authentication information",

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.41