about summary refs log tree commit diff homepage
path: root/client.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-01-08 00:30:21 -0500
committerJune McEnroe <june@causal.agency>2019-01-08 00:30:21 -0500
commit92ee655e2e54a3f5ef4a088c6156998f381a6acf (patch)
tree2512071cd129b92adfc35cc3002a1d1a98c4da84 /client.c
parentRemove incorrect default coordinates (diff)
downloadtorus-92ee655e2e54a3f5ef4a088c6156998f381a6acf.tar.gz
torus-92ee655e2e54a3f5ef4a088c6156998f381a6acf.zip
Factor out default paths
Diffstat (limited to 'client.c')
-rw-r--r--client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c
index 8f7e901..e2f3596 100644
--- a/client.c
+++ b/client.c
@@ -679,7 +679,7 @@ static void readInput(void) {
 }
 
 int main(int argc, char *argv[]) {
-	const char *sockPath = "torus.sock";
+	const char *sockPath = DefaultSockPath;
 	int opt;
 	while (0 < (opt = getopt(argc, argv, "hs:"))) {
 		switch (opt) {