[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.7 and 1.8

version 1.7, 2014/08/28 13:55:19 version 1.8, 2014/08/28 14:15:28
Line 2280 
Line 2280 
   
                         if (opt->type == OPTION_ARG ||                          if (opt->type == OPTION_ARG ||
                             opt->type == OPTION_ARG_FORMAT ||                              opt->type == OPTION_ARG_FORMAT ||
                               opt->type == OPTION_ARG_FUNC ||
                             opt->type == OPTION_ARG_INT) {                              opt->type == OPTION_ARG_INT) {
                                 if (++i >= argc) {                                  if (++i >= argc) {
                                         fprintf(stderr,                                          fprintf(stderr,
Line 2303 
Line 2304 
                                         return (1);                                          return (1);
                                 }                                  }
                                 *opt->opt.value = fmt;                                  *opt->opt.value = fmt;
                                   break;
   
                           case OPTION_ARG_FUNC:
                                   if (opt->opt.func(opt, argv[i]) != 0)
                                           return (1);
                                 break;                                  break;
   
                         case OPTION_ARG_INT:                          case OPTION_ARG_INT:

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8