From 5767095208327950ffbc736b955b8bdf446d9390 Mon Sep 17 00:00:00 2001 From: Andy Green Date: Thu, 15 Dec 2016 13:25:25 +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 50d6bac..c0a9698 100644 --- a/test-server/test-client.c +++ b/test-server/test-client.c @@ -329,13 +329,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, -- 2.7.4