[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.20 and 1.21

version 1.20, 2014/12/28 16:22:37 version 1.21, 2014/12/28 16:33:34
Line 2288 
Line 2288 
   
                 /* See if there is a matching option... */                  /* See if there is a matching option... */
                 for (j = 0; opts[j].name != NULL; j++) {                  for (j = 0; opts[j].name != NULL; j++) {
                         opt = &opts[j];                          if (strcmp(p, opts[j].name) == 0)
                         if (strcmp(p, opt->name) == 0)  
                                 break;                                  break;
                 }                  }
                 if (opts[j].name == NULL)                  opt = &opts[j];
                   if (opts->name == NULL && opts->type == 0)
                         goto unknown;                          goto unknown;
   
                 if (opt->type == OPTION_ARG ||                  if (opt->type == OPTION_ARG ||

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21