summaryrefslogtreecommitdiff
path: root/includes.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-10-27 23:42:05 +1000
committerDamien Miller <djm@mindrot.org>1999-10-27 23:42:05 +1000
commit332e67fde27c4017d2df8dafe05a55be3c7597cd (patch)
tree3c973d134c785a840e2f0c56aea886d8fa6f6b96 /includes.h
parent726a5b3be128911d2f38f73a6a8c9be6dde9bb3a (diff)
Attempt to clean up PAM code
Use PWDB getpw* functions if HAVE_PWDB defined Minor other tidyups
Diffstat (limited to 'includes.h')
-rw-r--r--includes.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/includes.h b/includes.h
index 8fa174bd6..b2e8c1e78 100644
--- a/includes.h
+++ b/includes.h
@@ -61,6 +61,14 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
61#include "mktemp.h" 61#include "mktemp.h"
62#include "strlcpy.h" 62#include "strlcpy.h"
63 63
64#ifdef HAVE_PAM
65#include <security/pam_appl.h>
66#endif /* HAVE_PAM */
67
68#ifdef HAVE_PWDB
69#include <pwdb/pwdb_map.h>
70#endif /* HAVE_PWDB */
71
64/* Define this to be the path of the xauth program. */ 72/* Define this to be the path of the xauth program. */
65#ifndef XAUTH_PATH 73#ifndef XAUTH_PATH
66#define XAUTH_PATH "/usr/X11R6/bin/xauth" 74#define XAUTH_PATH "/usr/X11R6/bin/xauth"