Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-07-13 12:10:33 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-07-13 12:10:33 +0300
commit5201748f5f5a0b1ac026a21dbcf64ce4ce0d0025 (patch)
treeabd16710d5a912d776a41432702be32f6e35c53a /source/blender/blenkernel/intern/writeframeserver.c
parent1dd92f352bc730a90591a9e728477f037a2a2886 (diff)
Fix T45397: Frameserver rendering no longer works in 2.75 or 2.75a
Issue was caused by a typo in original multiview commit.
Diffstat (limited to 'source/blender/blenkernel/intern/writeframeserver.c')
-rw-r--r--source/blender/blenkernel/intern/writeframeserver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/writeframeserver.c b/source/blender/blenkernel/intern/writeframeserver.c
index ba58038bbd8..212af76a7e8 100644
--- a/source/blender/blenkernel/intern/writeframeserver.c
+++ b/source/blender/blenkernel/intern/writeframeserver.c
@@ -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;
}