summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-05-15 16:28:11 +0200
committerJustus Winter <justus@sequoia-pgp.org>2019-05-15 16:29:55 +0200
commita25ef6974e0ba3989f6205c19a1f9ccfc81db584 (patch)
tree4ce3b386923515a662051c40f67a135ee15681f6 /ipc
parent36e2d97ac013e023feb27df939c3f6d6e32d8669 (diff)
core, store, tool: Use realm instead of domain.
- Remove the domain parameter from core::Context. - Replace it with a realm to be passed in when opening a store. - For sq, merge store name and realm into the --store parameter. - Fixes #105.
Diffstat (limited to 'ipc')
-rw-r--r--ipc/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/src/lib.rs b/ipc/src/lib.rs
index a9a89b82..74a6fb29 100644
--- a/ipc/src/lib.rs
+++ b/ipc/src/lib.rs
@@ -311,7 +311,7 @@ impl Server {
--ephemeral true|false", args[0]));
}
- let mut cfg = core::Context::configure("org.sequoia.api.server")
+ let mut cfg = core::Context::configure()
.home(&args[2]).lib(&args[4]);
if let Ok(ephemeral) = args[6].parse() {