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

Diff for /src/usr.bin/ssh/ssh-pkcs11.c between version 1.19 and 1.20

version 1.19, 2015/05/27 05:15:02 version 1.20, 2015/07/18 08:00:21
Line 621 
Line 621 
                         error("C_GetTokenInfo failed: %lu", rv);                          error("C_GetTokenInfo failed: %lu", rv);
                         continue;                          continue;
                 }                  }
                   if ((token->flags & CKF_TOKEN_INITIALIZED) == 0) {
                           debug2("%s: ignoring uninitialised token in slot %lu",
                               __func__, (unsigned long)i);
                           continue;
                   }
                 rmspace(token->label, sizeof(token->label));                  rmspace(token->label, sizeof(token->label));
                 rmspace(token->manufacturerID, sizeof(token->manufacturerID));                  rmspace(token->manufacturerID, sizeof(token->manufacturerID));
                 rmspace(token->model, sizeof(token->model));                  rmspace(token->model, sizeof(token->model));

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20