From b4e25470522122b92c3cb310717f7ee07e7bf8c7 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Mon, 12 Mar 2018 11:23:10 -0700 Subject: [PATCH] Minor tweak to QNAP path getter --- osdep/OSUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osdep/OSUtils.cpp b/osdep/OSUtils.cpp index aa531243f..cadd4e6b6 100644 --- a/osdep/OSUtils.cpp +++ b/osdep/OSUtils.cpp @@ -381,7 +381,7 @@ std::vector OSUtils::split(const char *s,const char *const sep,cons std::string OSUtils::platformDefaultHomePath() { #ifdef __QNAP__ - char *cmd = "/sbin/getcfg ZeroTier Install_Path -f /etc/config/qpkg.conf"; + char *cmd = "/sbin/getcfg zerotier Install_Path -f /etc/config/qpkg.conf"; char buf[128]; FILE *fp; if ((fp = popen(cmd, "r")) == NULL) {