From: Todd C. Miller Date: Thu, 1 Sep 1994 17:38:55 +0000 (+0000) Subject: added set_auth_parameters for osf X-Git-Tag: SUDO_1_4_0~724 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d04e3eafb6224a693da2971eb9d4f807596ba9d;p=sudo added set_auth_parameters for osf --- diff --git a/sudo.c b/sudo.c index 5a8b6696c..3726e6726 100644 --- a/sudo.c +++ b/sudo.c @@ -91,6 +91,10 @@ static char rcsid[] = "$Id$"; #ifdef _AIX #include #endif /* _AIX */ +#if defined(__osf__) && defined(HAVE_C2_SECURITY) +#include +#include +#endif /* __osf__ && HAVE_C2_SECURITY */ #include "sudo.h" #include "version.h" @@ -147,6 +151,10 @@ main(argc, argv) int sudo_mode = MODE_RUN; extern char ** environ; +#if defined(__osf__) && defined(HAVE_C2_SECURITY) + (void) set_auth_parameters(); +#endif /* __osf__ && HAVE_C2_SECURITY */ + Argv = argv; Argc = argc;