summaryrefslogtreecommitdiff
path: root/security/opencryptoki/files/patch-usr-lib-tpm_stdll-tpm_specific.c
diff options
context:
space:
mode:
authorHiroki Sato <hrs@FreeBSD.org>2022-05-06 17:31:40 +0900
committerHiroki Sato <hrs@FreeBSD.org>2022-05-06 17:32:09 +0900
commitcd09274aa2c59b5a06508ed00bf5bded7b7b6213 (patch)
tree9089f1274785e194391aa2e01883fa0e37af02e2 /security/opencryptoki/files/patch-usr-lib-tpm_stdll-tpm_specific.c
parentpackage: fix inverted logic (diff)
security/opencryptoki: update to 3.18.0
Diffstat (limited to 'security/opencryptoki/files/patch-usr-lib-tpm_stdll-tpm_specific.c')
-rw-r--r--security/opencryptoki/files/patch-usr-lib-tpm_stdll-tpm_specific.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/security/opencryptoki/files/patch-usr-lib-tpm_stdll-tpm_specific.c b/security/opencryptoki/files/patch-usr-lib-tpm_stdll-tpm_specific.c
new file mode 100644
index 000000000000..076414c35609
--- /dev/null
+++ b/security/opencryptoki/files/patch-usr-lib-tpm_stdll-tpm_specific.c
@@ -0,0 +1,14 @@
+--- usr/lib/tpm_stdll/tpm_specific.c.orig 2022-04-25 11:04:51 UTC
++++ usr/lib/tpm_stdll/tpm_specific.c
+@@ -3251,9 +3251,9 @@ int token_specific_creatlock(void)
+ "Directory(%s) missing: %s\n", lockdir, strerror(errno));
+ goto err;
+ }
+- grp = getgrnam("pkcs11");
++ grp = getgrnam(PKCS11GROUP);
+ if (grp == NULL) {
+- fprintf(stderr, "getgrname(pkcs11): %s", strerror(errno));
++ fprintf(stderr, "getgrname(" PKCS11GROUP "): %s", strerror(errno));
+ goto err;
+ }
+ /* set ownership to euid, and pkcs11 group */