59c3b1a0f7
GSS Proxy allows processes to perform GSSAPI operations, such as Kerberos authentication, through a privileged daemon. This separates credential handling from the application and lets services access keytabs and credential caches without holding the privileges directly. WWW: https://github.com/gssapi/gssproxy Sponsored by: Netzkommune GmbH Required for: FreeIPA server port
14 lines
422 B
C
14 lines
422 B
C
--- src/gp_mgmt.c.orig 2026-07-21 10:43:49 UTC
|
|
+++ src/gp_mgmt.c
|
|
@@ -270,9 +270,8 @@ done:
|
|
|
|
done:
|
|
if (ret) {
|
|
- char errstr[128]; /* reasonable error str length */
|
|
GPDEBUGN(3, "%s: Failed to set up krb5 tracing thread: [%s](%d)\n",
|
|
- __func__, strerror_r(ret, errstr, 128), ret);
|
|
+ __func__, gp_strerror(ret), ret);
|
|
free_k5tracer();
|
|
}
|
|
return;
|