[BACK]Return to misc.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/misc.h between version 1.92 and 1.93

version 1.92, 2021/01/11 02:12:57 version 1.93, 2021/02/15 20:36:35
Line 188 
Line 188 
 char    *opt_dequote(const char **sp, const char **errstrp);  char    *opt_dequote(const char **sp, const char **errstrp);
 int     opt_match(const char **opts, const char *term);  int     opt_match(const char **opts, const char *term);
   
   /* readconf/servconf option lists */
   void    opt_array_append(const char *file, const int line,
               const char *directive, char ***array, u_int *lp, const char *s);
   void    opt_array_append2(const char *file, const int line,
               const char *directive, char ***array, int **iarray, u_int *lp,
               const char *s, int i);
   
 /* readpass.c */  /* readpass.c */
   
 #define RP_ECHO                 0x0001  #define RP_ECHO                 0x0001
Line 210 
Line 217 
   
 typedef void (*sshsig_t)(int);  typedef void (*sshsig_t)(int);
 sshsig_t ssh_signal(int, sshsig_t);  sshsig_t ssh_signal(int, sshsig_t);
   
 #endif /* _MISC_H */  #endif /* _MISC_H */

Legend:
Removed from v.1.92  
changed lines
  Added in v.1.93