From 67a5d474fa865a9b1c3eb335bea88c1c239a9d08 Mon Sep 17 00:00:00 2001 From: Michael Meffie Date: Sat, 19 Oct 2024 07:23:16 -0400 Subject: [PATCH] auth: Add missing opr.h include in ktc_nt.c Commit 8e1e242ce47 (Replace lowercase min/max macros with opr_min/max) converted the min() invocation in auth/ktc_nt.c with our in-tree opr_min() macro, but missed adding the opr.h header to that source file. Add the opr.h include to fix the build error on windows: afsauth.lib(ktc_nt.obj) : error LNK2019: unresolved external symbol _opr_min referenced in function _GetLocalToken Change-Id: I96dbe377a8a85921fa1833cd27638cd853e26b9c Reviewed-on: https://gerrit.openafs.org/15869 Reviewed-by: Michael Meffie Tested-by: Michael Meffie Tested-by: BuildBot --- src/auth/ktc_nt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/auth/ktc_nt.c b/src/auth/ktc_nt.c index 009729bdad..2cd9d1a644 100644 --- a/src/auth/ktc_nt.c +++ b/src/auth/ktc_nt.c @@ -17,6 +17,7 @@ #include +#include #include #include #include