summaryrefslogtreecommitdiffstats
path: root/src/afb-websock.c
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2016-03-30 19:22:34 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2016-03-30 19:22:34 +0200
commit20f5ff02e455580c6e7129479f3328787b3333ff (patch)
treec966c48519d788c445903f3240dcf87f450853ca /src/afb-websock.c
parent4a6f90f69c15bb4d99bbbae50e9c9e267dc9b244 (diff)
refactoring (in progress, tbf)
Change-Id: I7461983aa3177f8ae54ca72761d916e646888fca Signed-off-by: José Bollo <jose.bollo@iot.bzh>
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;