Fix T45397: Frameserver rendering no longer works in 2.75 or 2.75a

Issue was caused by a typo in original multiview commit.
This commit is contained in:
Sergey Sharybin 2015-07-13 11:10:33 +02:00
parent 1dd92f352b
commit 5201748f5f

@ -218,7 +218,7 @@ static int handle_request(FrameserverContext *context, RenderData *rd, char *req
*p = 0;
if (STREQ(path, "/index.html") || strcmp(path, "/")) {
if (STREQ(path, "/index.html") || STREQ(path, "/")) {
safe_puts(context->connsock, index_page);
return -1;
}