Started implementing protocol version 1.1 and narrowing down
[silc.git] / lib / silcutil / silcutil.c
index 1473fc80d1619f8dfb748d59f294da60f5e9f018..f0c0e7b6a1d429cd2e31f1b940504a64b018ef3c 100644 (file)
@@ -769,6 +769,12 @@ char *silc_client_chmode(SilcUInt32 mode, const char *cipher, const char *hmac)
   if (mode & SILC_CHANNEL_MODE_FOUNDER_AUTH)
     strncat(string, "f", 1);
 
+  if (mode & SILC_CHANNEL_MODE_SILENCE_USERS)
+    strncat(string, "m", 1);
+
+  if (mode & SILC_CHANNEL_MODE_SILENCE_OPERS)
+    strncat(string, "M", 1);
+
   if (mode & SILC_CHANNEL_MODE_CIPHER)
     strncat(string, cipher, strlen(cipher));