Diff for /embedaddon/sudo/include/sudo_plugin.h between versions 1.1.1.3 and 1.1.1.4

version 1.1.1.3, 2013/07/22 10:46:12 version 1.1.1.4, 2013/10/14 07:56:34
Line 19 Line 19
   
 /* API version major/minor */  /* API version major/minor */
 #define SUDO_API_VERSION_MAJOR 1  #define SUDO_API_VERSION_MAJOR 1
#define SUDO_API_VERSION_MINOR 3#define SUDO_API_VERSION_MINOR 4
 #define SUDO_API_MKVERSION(x, y) ((x << 16) | y)  #define SUDO_API_MKVERSION(x, y) ((x << 16) | y)
 #define SUDO_API_VERSION SUDO_API_MKVERSION(SUDO_API_VERSION_MAJOR, SUDO_API_VERSION_MINOR)  #define SUDO_API_VERSION SUDO_API_MKVERSION(SUDO_API_VERSION_MAJOR, SUDO_API_VERSION_MINOR)
   
Line 46  struct sudo_conv_message { Line 46  struct sudo_conv_message {
     int timeout;      int timeout;
     const char *msg;      const char *msg;
 };  };
   
   /*
    * Maximum length of a reply (not including the trailing NUL) when
    * conversing with the user.  In practical terms, this is the longest
    * password sudo will support.  This means that a buffer of size
    * SUDO_CONV_REPL_MAX+1 is guaranteed to be able to hold any reply
    * from the conversation function.  It is also useful as a max value
    * for memset_s() when clearing passwords returned by the conversation
    * function.
    */
   #define SUDO_CONV_REPL_MAX      255
   
 struct sudo_conv_reply {  struct sudo_conv_reply {
     char *reply;      char *reply;

Removed from v.1.1.1.3  
changed lines
  Added in v.1.1.1.4


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>