]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/mount_config.h
9a885a927e9b25de580edc8d23aa5bbe8851496b
[nfs-utils.git] / utils / mount / mount_config.h
1 #ifndef _LINUX_MOUNT__CONFIG_H
2 #define _LINUX_MOUNT_CONFIG__H
3 /*
4  * mount_config.h -- mount configuration file routines 
5  * Copyright (C) 2008 Red Hat, Inc <nfs@redhat.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  */
18
19 inline void mount_config_init(char *);
20
21 #ifdef MOUNT_CONFIG
22 #include "conffile.h"
23 extern char *conf_get_mntopts(char *, char *, char *);
24
25 inline void mount_config_init(char *program)
26 {
27         xlog_open(program);
28         /*
29          * Read the the default mount options
30          */
31         conf_init();
32 }
33 inline char *mount_config_opts(char *spec, 
34                 char *mount_point, char *mount_opts)
35 {
36         return conf_get_mntopts(spec, mount_point, mount_opts);
37 }
38 #else /* MOUNT_CONFIG */
39
40 inline void mount_config_init(char *program) { }
41
42 inline char *mount_config_opts(char *spec, 
43                 char *mount_point, char *mount_opts)
44 {
45         return mount_opts;
46 }
47 #endif /* MOUNT_CONFIG */
48 #endif