[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.5 and 1.6

version 1.5, 2014/08/28 13:39:07 version 1.6, 2014/08/28 14:15:28
Line 289 
Line 289 
         enum {          enum {
                 OPTION_ARG,                  OPTION_ARG,
                 OPTION_ARG_FORMAT,                  OPTION_ARG_FORMAT,
                   OPTION_ARG_FUNC,
                 OPTION_ARG_INT,                  OPTION_ARG_INT,
                 OPTION_FLAG,                  OPTION_FLAG,
                 OPTION_FLAG_ORD,                  OPTION_FLAG_ORD,
Line 297 
Line 298 
         union {          union {
                 char **arg;                  char **arg;
                 int *flag;                  int *flag;
                   int (*func)(struct option *opt, char *arg);
                 int *value;                  int *value;
         } opt;          } opt;
         const int value;          const int value;

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6