blob: 8086961f2455fabbe6ffe6bc963e91438859e960 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
=== modified file 'lib/defaults.c'
--- lib/defaults.c 2011-04-30 18:13:36 +0000
+++ lib/defaults.c 2011-04-30 18:12:37 +0000
@@ -19,7 +19,10 @@
#include "list.h"
#include "defaults.h"
+#include "config.h"
+#ifdef WITH_LDAP
#include "lookup_ldap.h"
+#endif
#include "log.h"
#include "automount.h"
@@ -197,6 +200,7 @@
return 1;
}
+#ifdef WITH_LDAP
void defaults_free_uris(struct list_head *list)
{
struct list_head *next;
@@ -252,9 +256,11 @@
return 1;
}
+#endif
struct list_head *defaults_get_uris(void)
{
+#ifdef WITH_LDAP
FILE *f;
char buf[MAX_LINE_LEN];
char *res;
@@ -288,6 +294,9 @@
fclose(f);
return list;
+#else
+ return NULL;
+#endif
}
/*
@@ -450,6 +459,7 @@
return res;
}
+#ifdef WITH_LDAP
struct ldap_schema *defaults_get_default_schema(void)
{
struct ldap_schema *schema;
@@ -645,6 +655,7 @@
return schema;
}
+#endif
unsigned int defaults_get_mount_nfs_default_proto(void)
{
|