[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.18 and 1.19

version 1.18, 2014/12/28 15:48:52 version 1.19, 2014/12/28 16:10:33
Line 2271 
Line 2271 
                         continue;                          continue;
                 }                  }
   
                 if (*p == '\0') /* XXX - end of named options. */                  /* End of named options (single hyphen). */
                   if (*p == '\0') {
                           if (++i >= argc)
                                   goto done;
                           if (argsused != NULL)
                                   goto done;
                           if (unnamed != NULL && i == argc - 1) {
                                   if (*unnamed != NULL)
                                           goto toomany;
                                   *unnamed = argv[i];
                                   continue;
                           }
                         goto unknown;                          goto unknown;
                   }
   
                 for (j = 0; opts[j].name != NULL; j++) {                  for (j = 0; opts[j].name != NULL; j++) {
                         opt = &opts[j];                          opt = &opts[j];

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19