aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2021-02-24 10:01:19 +0000
committerThomas Adam <thomas@xteddy.org>2021-02-24 10:01:19 +0000
commit9710ec52446af4d176a17b5acec3064e01e8a0b7 (patch)
tree6f27544d527018fcf7d8dfe6e6ef70c5273380e8
parent0982a1a9752cd34f311830f4508ebbd341b7482e (diff)
parent6aaef3e705507566631905560b1c903f8ae22ab3 (diff)
downloadrtmux-9710ec52446af4d176a17b5acec3064e01e8a0b7.tar.gz
rtmux-9710ec52446af4d176a17b5acec3064e01e8a0b7.tar.bz2
rtmux-9710ec52446af4d176a17b5acec3064e01e8a0b7.zip
Merge branch 'obsd-master' into master
-rw-r--r--format.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/format.c b/format.c
index c350683d..96aac2dc 100644
--- a/format.c
+++ b/format.c
@@ -1319,8 +1319,8 @@ format_cb_client_prefix(struct format_tree *ft)
if (ft->c != NULL) {
name = server_client_get_key_table(ft->c);
if (strcmp(ft->c->keytable->name, name) == 0)
- return (xstrdup("1"));
- return (xstrdup("0"));
+ return (xstrdup("0"));
+ return (xstrdup("1"));
}
return (NULL);
}