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

Diff for /src/usr.bin/openssl/apps.h between version 1.1 and 1.2

version 1.1, 2014/08/26 17:47:24 version 1.2, 2014/08/27 14:59:44
Line 282 
Line 282 
   
 #define OPENSSL_NO_SSL_INTERN  #define OPENSSL_NO_SSL_INTERN
   
   struct option {
           const char *name;
           const char *argname;
           const char *desc;
           enum {
                   OPTION_ARG,
                   OPTION_FLAG,
                   OPTION_VALUE,
           } type;
           union {
                   char **arg;
                   int *flag;
                   int *value;
           } opt;
           const int value;
   };
   
   void options_usage(struct option *opts);
   int options_parse(int argc, char **argv, struct option *opts, char **unnamed);
   
 #endif  #endif

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2