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

Diff for /src/usr.bin/ssh/auth.c between version 1.111 and 1.112

version 1.111, 2015/05/01 04:17:51 version 1.112, 2015/08/06 14:53:21
Line 261 
Line 261 
         case PERMIT_YES:          case PERMIT_YES:
                 return 1;                  return 1;
         case PERMIT_NO_PASSWD:          case PERMIT_NO_PASSWD:
                 if (strcmp(method, "password") != 0)                  if (strcmp(method, "publickey") == 0 ||
                       strcmp(method, "hostbased") == 0 ||
                       strcmp(method, "gssapi-with-mic"))
                         return 1;                          return 1;
                 break;                  break;
         case PERMIT_FORCED_ONLY:          case PERMIT_FORCED_ONLY:

Legend:
Removed from v.1.111  
changed lines
  Added in v.1.112