aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2017-01-07 13:10:48 -0300
committerdequis <dx@dxzone.com.ar>2017-01-07 13:10:48 -0300
commit683e4e04998ea6c648e470eb1fe32df1934334fb (patch)
tree0ebe01290550bb0688c7bda2166e627d075c06b6
parent3b8e4be6374cf43d15957ac255ebf2df14fe4c50 (diff)
blist: set width of nick column to 24 to avoid truncating them
It was 16 before.
-rw-r--r--root_commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/root_commands.c b/root_commands.c
index 4ad78119..1cbf462f 100644
--- a/root_commands.c
+++ b/root_commands.c
@@ -1063,7 +1063,7 @@ static void cmd_blist(irc_t *irc, char **cmd)
if (strchr(irc->umode, 'b') != NULL) {
format = "%s\t%s\t%s";
} else {
- format = "%-16.16s %-40.40s %s";
+ format = "%-24.24s %-40.40s %s";
}
irc_rootmsg(irc, format, "Nick", "Handle/Account", "Status");