File: compat.c

package info (click to toggle)
libpam-heimdal 2.5-1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 588 kB
  • ctags: 114
  • sloc: sh: 2,867; ansic: 1,555; makefile: 106
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