From efbfc5fa42ad9d9bb65ef01635b9598a0cd36de0 Mon Sep 17 00:00:00 2001 From: okan Date: Thu, 5 Jun 2008 00:07:05 +0000 Subject: actually honor termpath and lockpath if specified in cwmrc. "now" oga@ --- conf.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/conf.c b/conf.c index d328f52..33a02dc 100644 --- a/conf.c +++ b/conf.c @@ -36,11 +36,11 @@ conf_cmd_add(struct conf *c, char *image, char *label, int flags) { /* "term" and "lock" have special meanings. */ - if (strcmp(label, "term") == 0) { - strlcpy(Conf.termpath, image, sizeof(Conf.termpath)); - } else if (strcmp(label, "lock") == 0) { - strlcpy(Conf.lockpath, image, sizeof(Conf.lockpath)); - } else { + if (strcmp(label, "term") == 0) + strlcpy(c->termpath, image, sizeof(c->termpath)); + else if (strcmp(label, "lock") == 0) + strlcpy(c->lockpath, image, sizeof(c->lockpath)); + else { struct cmd *cmd; XMALLOC(cmd, struct cmd); cmd->flags = flags; -- cgit 1.4.1