summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornpmccallum <npmccallum@c587cffe-e639-0410-9787-d7902ae8ed56>2007-11-20 21:53:19 +0000
committernpmccallum <npmccallum@c587cffe-e639-0410-9787-d7902ae8ed56>2007-11-20 21:53:19 +0000
commit94e3ec263a6dfefaa538910747c07acba2b635ef (patch)
tree10aad6e36401bee5c79807010a295e472cfc34db
parentdeb7c6091e28b7559fa2fdb73a251b20016b5897 (diff)
downloadlibproxy-94e3ec263a6dfefaa538910747c07acba2b635ef.tar.gz
fix SYSCONFDIR reference
git-svn-id: http://libproxy.googlecode.com/svn/trunk@55 c587cffe-e639-0410-9787-d7902ae8ed56
-rw-r--r--src/plugins/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/file.c b/src/plugins/file.c
index 54c4689..4d0d6c3 100644
--- a/src/plugins/file.c
+++ b/src/plugins/file.c
@@ -49,7 +49,7 @@ pxConfig *get_config_from_file(pxProxyFactory *self, char *misc, char *filename)
pxConfig *system_get_config_cb(pxProxyFactory *self)
{
- return get_config_from_file(self, "file_system", "/etc/proxy.conf");
+ return get_config_from_file(self, "file_system", SYSCONFDIR "/proxy.conf");
}
pxConfig *user_get_config_cb(pxProxyFactory *self)