[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.56 and 1.56.4.1

version 1.56, 2023/03/08 05:33:53 version 1.56.4.1, 2023/07/19 14:07:53
Line 1512 
Line 1512 
                 error("dlopen %s failed: %s", provider_id, dlerror());                  error("dlopen %s failed: %s", provider_id, dlerror());
                 goto fail;                  goto fail;
         }          }
         if ((getfunctionlist = dlsym(handle, "C_GetFunctionList")) == NULL) {          if ((getfunctionlist = dlsym(handle, "C_GetFunctionList")) == NULL)
                 error("dlsym(C_GetFunctionList) failed: %s", dlerror());                  fatal("dlsym(C_GetFunctionList) failed: %s", dlerror());
                 goto fail;  
         }  
         p = xcalloc(1, sizeof(*p));          p = xcalloc(1, sizeof(*p));
         p->name = xstrdup(provider_id);          p->name = xstrdup(provider_id);
         p->handle = handle;          p->handle = handle;

Legend:
Removed from v.1.56  
changed lines
  Added in v.1.56.4.1