From 72d78ed4f8dec6cd256afb420353de45a28e059e Mon Sep 17 00:00:00 2001 From: Andy Green Date: Thu, 15 Dec 2016 13:34:06 +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 c26be7f2..e3383cd5 100644 --- a/test-server/test-client.c +++ b/test-server/test-client.c @@ -206,13 +206,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,