summaryrefslogtreecommitdiffstats
path: root/src/afb-websock.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/afb-websock.c')
-rw-r--r--src/afb-websock.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/afb-websock.c b/src/afb-websock.c
index 1c087e25..b6044326 100644
--- a/src/afb-websock.c
+++ b/src/afb-websock.c
@@ -136,7 +136,6 @@ static int headerhas(const char *header, const char *needle)
if (!*header)
return 0;
len = strcspn(header, sep);
-printf("!!!%.*s!!!\n",len,header);
if (n == len && 0 == strncasecmp(needle, header, n))
return 1;
header += len;