[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.23 and 1.24

version 1.23, 2019/07/14 03:30:45 version 1.24, 2020/09/09 12:47:46
Line 303 
Line 303 
                 OPTION_VALUE,                  OPTION_VALUE,
                 OPTION_VALUE_AND,                  OPTION_VALUE_AND,
                 OPTION_VALUE_OR,                  OPTION_VALUE_OR,
                   OPTION_UL_VALUE_OR,
         } type;          } type;
         union {          union {
                 char **arg;                  char **arg;
Line 312 
Line 313 
                 int (*func)(void);                  int (*func)(void);
                 long *lvalue;                  long *lvalue;
                 int *value;                  int *value;
                   unsigned long *ulvalue;
                 time_t *tvalue;                  time_t *tvalue;
         } opt;          } opt;
         const int value;          const int value;
           const unsigned long ulvalue;
 };  };
   
 void options_usage(const struct option *opts);  void options_usage(const struct option *opts);

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24