]> www.infradead.org Git - pidgin-chime.git/commitdiff
Add a comment about how GWT escapes "|".
authorIsaac Jurado <ijurado@amazon.com>
Thu, 16 Nov 2017 20:11:44 +0000 (21:11 +0100)
committerIsaac Jurado <ijurado@amazon.com>
Thu, 16 Nov 2017 20:11:44 +0000 (21:11 +0100)
login-warpdrive.c

index 8883e148cae6978d6763e1a1fc1e3ddad95f3029..37b34090eed203b596264d1f9f797d8be5a3d057 100644 (file)
@@ -79,6 +79,7 @@ static gchar *escaped(const gchar *src)
                        g_string_append(dst, "\\\\");
                        break;
                case '|':
+                       /* GWT escapes the pipe charater with backslash exclamation */
                        g_string_append(dst, "\\!");
                        break;
                default: