diff options
Diffstat (limited to 'nscd/nscd.h')
-rw-r--r-- | nscd/nscd.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/nscd/nscd.h b/nscd/nscd.h index 4e00f69fb9..d5dc613d22 100644 --- a/nscd/nscd.h +++ b/nscd/nscd.h @@ -87,9 +87,12 @@ struct database_dyn /* Paths of the file for the persistent storage. */ -#define _PATH_NSCD_PASSWD_DB "/var/run/nscd/passwd" -#define _PATH_NSCD_GROUP_DB "/var/run/nscd/group" -#define _PATH_NSCD_HOSTS_DB "/var/run/nscd/hosts" +#define _PATH_NSCD_PASSWD_DB "/var/db/nscd/passwd" +#define _PATH_NSCD_GROUP_DB "/var/db/nscd/group" +#define _PATH_NSCD_HOSTS_DB "/var/db/nscd/hosts" + +/* Path used when not using persistent storage. */ +#define _PATH_NSCD_XYZ_DB_TMP "/var/run/nscd/dbXXXXXX" /* Global variables. */ |