auth: Add missing opr.h include in ktc_nt.c

Commit 8e1e242ce4 (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 <mmeffie@sinenomine.net>
Tested-by: Michael Meffie <mmeffie@sinenomine.net>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
This commit is contained in:
Michael Meffie 2024-10-19 07:23:16 -04:00
parent df010f3e7c
commit 67a5d474fa

View File

@ -17,6 +17,7 @@
#include <ctype.h>
#include <afs/opr.h>
#include <afs/pthread_glock.h>
#include <rpc.h>
#include <afs/smb_iocons.h>