summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/main.c b/src/main.c
index 15cb5a1..9e2db60 100644
--- a/src/main.c
+++ b/src/main.c
@@ -46,10 +46,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#include "usb.h"
#include "device.h"
#include "client.h"
-
-#ifdef HAVE_LIBIMOBILEDEVICE
-extern const char* userpref_get_config_dir();
-#endif
+#include "conf.h"
static const char *socket_path = "/var/run/usbmuxd";
static const char *lockfile = "/var/run/usbmuxd.pid";
@@ -534,7 +531,7 @@ int main(int argc, char *argv[])
goto terminate;
#ifdef HAVE_LIBIMOBILEDEVICE
- const char* userprefdir = userpref_get_config_dir();
+ const char* userprefdir = config_get_config_dir();
struct stat fst;
memset(&fst, '\0', sizeof(struct stat));
if (stat(userprefdir, &fst) < 0) {