From d170ed06234a7ad055c2a8c82497a13dd1706685 Mon Sep 17 00:00:00 2001 From: Andy Green Date: Thu, 15 Dec 2016 13:28:48 +0800 Subject: [PATCH] test-client: fix broken protocol names --- test-server/test-client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-server/test-client.c b/test-server/test-client.c index 7a79159d..ac57578a 100644 --- a/test-server/test-client.c +++ b/test-server/test-client.c @@ -324,13 +324,13 @@ callback_lws_mirror(struct lws *wsi, enum lws_callback_reasons reason, static struct lws_protocols protocols[] = { { - "dumb-increment-protocol,fake-nonexistant-protocol", + "dumb-increment-protocol", callback_dumb_increment, 0, 20, }, { - "fake-nonexistant-protocol,lws-mirror-protocol", + "lws-mirror-protocol", callback_lws_mirror, 0, 128,