$ git clone http://tcclient.ion.nu/tc_client.git
commit b11b4e39c618a87a702fab0a9a086cb8f5e55393
Author: Alicia <...>
Date:   Sat Dec 17 12:24:53 2016 +0100

    Added notification for receiving a valid broadcast password.

diff --git a/ChangeLog b/ChangeLog
index d13bc93..febc61c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,7 @@ Buildsystem fixes.
 More fixes for compiling in a separate directory.
 Notify if the captcha was not completed and tinychat puts our session in "lurker" mode.
 Basic support for greenroom channels.
+Added notification for receiving a valid broadcast password.
 tc_client-gtk: bugfix: don't rely on stack allocated variables for GUI callbacks.
 tc_client-gtk: install the camera placeholder animation for the 'install' target.
 tc_client-gtk: mark outgoing video keyframes as keyframes.
diff --git a/client.c b/client.c
index a6ddb75..0bd0b22 100644
--- a/client.c
+++ b/client.c
@@ -133,6 +133,7 @@ char* gethost(char *channel, char *password)
   {
     end[0]=0;
     bpassword=strdup(&bpass[12]);
+    printf("Authenticated to broadcast\n");
   }
   free(response);
   return host;
@@ -846,6 +847,7 @@ int main(int argc, char** argv)
         {
           free((void*)bpassword);
           bpassword=strdup(&msg[16]);
+          printf("Authenticated to broadcast\n");
         }
       }
       else if(!strcmp(msg, "/version"))