$ git clone https://tcclient.ion.nu/tc_client.git
commit 9d878394219ee2c0d8677aad5207df12b315296d
Author: Alicia <...>
Date:   Wed May 27 10:20:15 2015 +0200

    Provide feedback on the /ban command.

diff --git a/ChangeLog b/ChangeLog
index 9c6999a..960efce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
 0.32:
 Added an 'install' make target, adjusted utilities to run tc_client from PATH unless they were run from the build directory (i.e. './<executable>')
+Provide feedback on the /ban command.
 irchack: send passwords by pipe, not argument.
 tc_client-gtk: ignore anything after the offset in /mbs commands.
 tc_client-gtk: when camming down, remove the glib event source for our cam stream.
diff --git a/client.c b/client.c
index df33b0d..2789591 100644
--- a/client.c
+++ b/client.c
@@ -531,6 +531,7 @@ int main(int argc, char** argv)
           sprintf(buf, "notice%s%%20was%%20banned%%20by%%20%s%%20(%s)", nick, nickname, account_user);
           amfstring(&amf, buf);
           amfsend(&amf, sock);
+          printf("%s %s was banned by %s (%s)\n", timestamp(), nick, nickname, account_user);
           // kick (this does the actual banning)
           amfinit(&amf, 3);
           amfstring(&amf, "kick");