Lines Matching +full:separately +full:- +full:defined
14 * The canonical version of this file is maintained in the rra-c-util package,
15 * which can be found at <https://www.eyrie.org/~eagle/software/rra-c-util/>.
18 * Copyright 2010, 2012-2014
39 * SPDX-License-Identifier: MIT
51 #include <pam-util/args.h>
52 #include <pam-util/logging.h>
57 * or Kerberos initialization failure. If HAVE_KRB5 is defined, we also
73 args->pamh = pamh; in putil_args_new()
74 args->silent = ((flags & PAM_SILENT) == PAM_SILENT); in putil_args_new()
78 status = krb5_init_secure_context(&args->ctx); in putil_args_new()
80 status = krb5_init_context(&args->ctx); in putil_args_new()
92 * Free a pam_args struct. The config member must be freed separately.
100 free(args->realm); in putil_args_free()
101 if (args->ctx != NULL) in putil_args_free()
102 krb5_free_context(args->ctx); in putil_args_free()