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

Diff for /src/usr.bin/ssh/ssh-keygen.c between version 1.376 and 1.377

version 1.376, 2019/12/30 03:30:09 version 1.377, 2019/12/30 09:19:52
Line 3116 
Line 3116 
                                 fatal("Missing security key flags");                                  fatal("Missing security key flags");
                         if (strcasecmp(optarg, "no-touch-required") == 0)                          if (strcasecmp(optarg, "no-touch-required") == 0)
                                 sk_flags &= ~SSH_SK_USER_PRESENCE_REQD;                                  sk_flags &= ~SSH_SK_USER_PRESENCE_REQD;
                           else if (strcasecmp(optarg, "resident") == 0)
                                   sk_flags |= SSH_SK_RESIDENT_KEY;
                         else {                          else {
                                 ull = strtoull(optarg, &ep, 0);                                  ull = strtoull(optarg, &ep, 0);
                                 if (*ep != '\0')                                  if (*ep != '\0')

Legend:
Removed from v.1.376  
changed lines
  Added in v.1.377