File: compat.c

package info (click to toggle)
libpam-krb5 2.6-1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 600 kB
  • ctags: 114
  • sloc: sh: 2,833; ansic: 1,569; makefile: 121
file content (15 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * compat.c
 *
 * Wrapper to include the appropriate Kerberos compatibility functions.
 */

#include "config.h"

#ifdef HAVE_KRB5_MIT
# include "compat_mit.c"
#elif HAVE_KRB5_HEIMDAL
# include "compat_heimdal.c"
#else
# error "Unknown Kerberos implementation"
#endif