Date: Wed, 6 Aug 2025 23:15:36 GMT From: Rick Macklem <rmacklem@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 784069e172c5 - main - gssd: Fix build for now Message-ID: <202508062315.576NFaLB017698@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by rmacklem: URL: https://cgit.FreeBSD.org/src/commit/?id=784069e172c53cd5a5e27cda57fe2df01f53ab58 commit 784069e172c53cd5a5e27cda57fe2df01f53ab58 Author: Rick Macklem <rmacklem@FreeBSD.org> AuthorDate: 2025-08-06 23:11:07 +0000 Commit: Rick Macklem <rmacklem@FreeBSD.org> CommitDate: 2025-08-06 23:11:07 +0000 gssd: Fix build for now Until cy@ commits his change, this change is needed to make the gssd build. It will not actually work correctly until the cy@ commit is done. I will revert this patch then. --- usr.sbin/gssd/gssd.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr.sbin/gssd/gssd.c b/usr.sbin/gssd/gssd.c index 54d2062dd29a..1c20a585f626 100644 --- a/usr.sbin/gssd/gssd.c +++ b/usr.sbin/gssd/gssd.c @@ -50,9 +50,11 @@ #include <unistd.h> #include <arpa/inet.h> #include <netinet/in.h> -#include <gssapi/gssapi.h> #ifdef MK_MITKRB5 +#include <gssapi_krb5/gssapi/gssapi.h> #include <gssapi/gssapi_krb5.h> +#else +#include <gssapi/gssapi.h> #endif #include <rpc/rpc.h> #include <rpc/rpc_com.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202508062315.576NFaLB017698>