summaryrefslogtreecommitdiffstats
path: root/vespaclient
diff options
context:
space:
mode:
Diffstat (limited to 'vespaclient')
-rw-r--r--vespaclient/src/vespa/vespaclient/spoolmaster/application.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/vespaclient/src/vespa/vespaclient/spoolmaster/application.cpp b/vespaclient/src/vespa/vespaclient/spoolmaster/application.cpp
index 0220f196185..bc640370799 100644
--- a/vespaclient/src/vespa/vespaclient/spoolmaster/application.cpp
+++ b/vespaclient/src/vespa/vespaclient/spoolmaster/application.cpp
@@ -11,15 +11,11 @@
namespace {
std::string masterInbox() {
- std::string dir = vespa::Defaults::vespaHome();
- dir.append("/var/spool/master/inbox");
- return dir;
+ return vespa::Defaults::underVespaHome("var/spool/master/inbox");
}
std::string outboxParent() {
- std::string dir = vespa::Defaults::vespaHome();
- dir.append("/var/spool/vespa");
- return dir;
+ return vespa::Defaults::underVespaHome("var/spool/vespa");
}
}