summaryrefslogtreecommitdiffstats
path: root/sss_client/sss_pam_macros.h
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-02-17 09:14:40 -0500
committerStephen Gallagher <sgallagh@redhat.com>2010-02-18 13:48:44 -0500
commit8e9ac4d7443939ed0d152708d3877b29252d16fe (patch)
treeb857cd509655146456b0ad624db527c1c3c366f3 /sss_client/sss_pam_macros.h
parent29e9f5e711a03135944e30ad241c8182dacc6049 (diff)
downloadsssd-8e9ac4d7443939ed0d152708d3877b29252d16fe.tar.gz
sssd-8e9ac4d7443939ed0d152708d3877b29252d16fe.tar.xz
sssd-8e9ac4d7443939ed0d152708d3877b29252d16fe.zip
Eliminate separate build tree for sss_client
Diffstat (limited to 'sss_client/sss_pam_macros.h')
-rw-r--r--sss_client/sss_pam_macros.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/sss_client/sss_pam_macros.h b/sss_client/sss_pam_macros.h
deleted file mode 100644
index 5277acd0f..000000000
--- a/sss_client/sss_pam_macros.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * System Security Services Daemon. Client Interface for NSS and PAM.
- *
- * Copyright (C) Stephen Gallagher 2009
- *
- * You can used this header file in any way you see fit provided copyright
- * notices are preserved.
- *
- */
-
-#ifndef _SSS_PAM_MACROS_H
-#define _SSS_PAM_MACROS_H
-
-/* Older versions of the pam development headers do not include the
- * _pam_overwrite_n(n,x) macro. This implementation is copied from
- * the Fedora 11 _pam_macros.h.
- */
-#include <security/_pam_macros.h>
-#ifndef _pam_overwrite_n
-#define _pam_overwrite_n(x,n) \
-do { \
- register char *__xx__; \
- register unsigned int __i__ = 0; \
- if ((__xx__=(x))) \
- for (;__i__<n; __i__++) \
- __xx__[__i__] = 0; \
-} while (0)
-#endif /* _pam_overwrite_n */
-
-#endif /* _SSS_PAM_MACROS_H */