[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.94 and 1.95

version 1.94, 2011/05/23 03:33:38 version 1.95, 2012/04/11 13:17:54
Line 267 
Line 267 
 char *  char *
 authorized_principals_file(struct passwd *pw)  authorized_principals_file(struct passwd *pw)
 {  {
         if (options.authorized_principals_file == NULL)          if (options.authorized_principals_file == NULL ||
               strcasecmp(options.authorized_principals_file, "none") == 0)
                 return NULL;                  return NULL;
         return expand_authorized_keys(options.authorized_principals_file, pw);          return expand_authorized_keys(options.authorized_principals_file, pw);
 }  }

Legend:
Removed from v.1.94  
changed lines
  Added in v.1.95