aboutsummaryrefslogtreecommitdiff
path: root/format.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2017-04-21 16:01:18 +0100
committerThomas Adam <thomas@xteddy.org>2017-04-21 16:01:18 +0100
commit4612419c143c3f748bc5f6ccd467c7c0014e8d48 (patch)
tree42929aeeb8b1d89abf639124412199fac7092f04 /format.c
parent93062ad09952f411d48818b05dc9898bc14dcfde (diff)
parentc799425069d02675474cda312fac1457829052fb (diff)
downloadrtmux-4612419c143c3f748bc5f6ccd467c7c0014e8d48.tar.gz
rtmux-4612419c143c3f748bc5f6ccd467c7c0014e8d48.tar.bz2
rtmux-4612419c143c3f748bc5f6ccd467c7c0014e8d48.zip
Merge branch 'obsd-master'
Diffstat (limited to 'format.c')
-rw-r--r--format.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/format.c b/format.c
index 5be10e1a..6b5b4df8 100644
--- a/format.c
+++ b/format.c
@@ -574,10 +574,12 @@ format_create(struct cmdq_item *item, int tag, int flags)
format_add(ft, "socket_path", "%s", socket_path);
format_add_tv(ft, "start_time", &start_time);
- if (item != NULL && item->cmd != NULL)
- format_add(ft, "command", "%s", item->cmd->entry->name);
- if (item != NULL && item->formats != NULL)
- format_merge(ft, item->formats);
+ if (item != NULL) {
+ if (item->cmd != NULL)
+ format_add(ft, "command", "%s", item->cmd->entry->name);
+ if (item->shared != NULL && item->shared->formats != NULL)
+ format_merge(ft, item->shared->formats);
+ }
return (ft);
}