[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.81 and 1.82

version 1.81, 2019/09/03 08:32:11 version 1.82, 2019/11/12 22:34:20
Line 176 
Line 176 
 #define RP_ALLOW_EOF            0x0004  #define RP_ALLOW_EOF            0x0004
 #define RP_USE_ASKPASS          0x0008  #define RP_USE_ASKPASS          0x0008
   
   struct notifier_ctx;
   
 char    *read_passphrase(const char *, int);  char    *read_passphrase(const char *, int);
 int      ask_permission(const char *, ...) __attribute__((format(printf, 1, 2)));  int      ask_permission(const char *, ...) __attribute__((format(printf, 1, 2)));
   struct notifier_ctx *notify_start(int, const char *, ...)
           __attribute__((format(printf, 2, 3)));
   void    notify_complete(struct notifier_ctx *);
   
 #define MINIMUM(a, b)   (((a) < (b)) ? (a) : (b))  #define MINIMUM(a, b)   (((a) < (b)) ? (a) : (b))
 #define MAXIMUM(a, b)   (((a) > (b)) ? (a) : (b))  #define MAXIMUM(a, b)   (((a) > (b)) ? (a) : (b))

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.82