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

Diff for /src/usr.bin/openssl/apps.c between version 1.3 and 1.4

version 1.3, 2014/08/27 15:51:41 version 1.4, 2014/08/28 13:37:41
Line 2277 
Line 2277 
                                 continue;                                  continue;
   
                         if (opt->type == OPTION_ARG ||                          if (opt->type == OPTION_ARG ||
                               opt->type == OPTION_ARG_FORMAT ||
                             opt->type == OPTION_ARG_INT) {                              opt->type == OPTION_ARG_INT) {
                                 if (++i >= argc) {                                  if (++i >= argc) {
                                         fprintf(stderr,                                          fprintf(stderr,
Line 2289 
Line 2290 
                         switch (opt->type) {                          switch (opt->type) {
                         case OPTION_ARG:                          case OPTION_ARG:
                                 *opt->opt.arg = argv[i];                                  *opt->opt.arg = argv[i];
                                   break;
   
                           case OPTION_ARG_FORMAT:
                                   *opt->opt.value = str2fmt(argv[i]);
                                 break;                                  break;
   
                         case OPTION_ARG_INT:                          case OPTION_ARG_INT:

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4