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

Diff for /src/usr.bin/ssh/servconf.c between version 1.367 and 1.368

version 1.367, 2020/07/05 23:59:45 version 1.368, 2020/08/27 01:07:09
Line 1460 
Line 1460 
                                 continue;                                  continue;
                         if (strcasecmp(arg, "touch-required") == 0)                          if (strcasecmp(arg, "touch-required") == 0)
                                 value |= PUBKEYAUTH_TOUCH_REQUIRED;                                  value |= PUBKEYAUTH_TOUCH_REQUIRED;
                           else if (strcasecmp(arg, "verify-required") == 0)
                                   value |= PUBKEYAUTH_VERIFY_REQUIRED;
                         else {                          else {
                                 fatal("%s line %d: unsupported "                                  fatal("%s line %d: unsupported "
                                     "PubkeyAuthOptions option %s",                                      "PubkeyAuthOptions option %s",
Line 2857 
Line 2859 
                 printf(" none");                  printf(" none");
         if (o->pubkey_auth_options & PUBKEYAUTH_TOUCH_REQUIRED)          if (o->pubkey_auth_options & PUBKEYAUTH_TOUCH_REQUIRED)
                 printf(" touch-required");                  printf(" touch-required");
           if (o->pubkey_auth_options & PUBKEYAUTH_VERIFY_REQUIRED)
                   printf(" verify-required");
         printf("\n");          printf("\n");
 }  }

Legend:
Removed from v.1.367  
changed lines
  Added in v.1.368