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

Diff for /src/usr.bin/encrypt/encrypt.c between version 1.35 and 1.36

version 1.35, 2014/12/29 17:07:17 version 1.36, 2015/01/04 02:28:26
Line 141 
Line 141 
                         operation = DO_BLF;                          operation = DO_BLF;
                         if (strcmp(optarg, "a") == 0)                          if (strcmp(optarg, "a") == 0)
                                 rounds = ideal_rounds();                                  rounds = ideal_rounds();
                         else                          else {
                                 rounds = strtonum(optarg, 1, INT_MAX, &errstr);                                  rounds = strtonum(optarg, 1, INT_MAX, &errstr);
                         if (errstr != NULL)                                  if (errstr != NULL)
                                 errx(1, "%s: %s", errstr, optarg);                                          errx(1, "%s: %s", errstr, optarg);
                           }
                         extra = &rounds;                          extra = &rounds;
                         break;                          break;
                 case 'c':                       /* user login class */                  case 'c':                       /* user login class */

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.36