[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.24 and 1.25

version 1.24, 2020/09/09 12:47:46 version 1.25, 2021/03/24 12:07:39
Line 304 
Line 304 
                 OPTION_VALUE_AND,                  OPTION_VALUE_AND,
                 OPTION_VALUE_OR,                  OPTION_VALUE_OR,
                 OPTION_UL_VALUE_OR,                  OPTION_UL_VALUE_OR,
                   OPTION_ORDER,
         } type;          } type;
         union {          union {
                 char **arg;                  char **arg;
Line 315 
Line 316 
                 int *value;                  int *value;
                 unsigned long *ulvalue;                  unsigned long *ulvalue;
                 time_t *tvalue;                  time_t *tvalue;
                   int *order;
         } opt;          } opt;
         const int value;          const int value;
         const unsigned long ulvalue;          const unsigned long ulvalue;
           int *order;
 };  };
   
 void options_usage(const struct option *opts);  void options_usage(const struct option *opts);

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