I found this when trying to use an external script/daemon
to control my dedicated server, after upgrading from 1.34 to
svn HEAD.
It seems that stdin_active is undefined, I provided the
following patch.
--- code/sys/con_tty.c (revision 1508)
+++ code/sys/con_tty.c (working copy)
@@ -413,7 +413,7 @@
int len;
fd_set fdset;
struct timeval timeout;
- static qboolean stdin_active;
+ static qboolean stdin_active = qtrue;
if (!com_dedicated || !com_dedicated->value)
return NULL;
I found this when trying to use an external script/daemon to control my dedicated server, after upgrading from 1.34 to svn HEAD. It seems that stdin_active is undefined, I provided the following patch. --- code/sys/con_tty.c (revision 1508) +++ code/sys/con_tty.c (working copy) @@ -413,7 +413,7 @@ int len; fd_set fdset; struct timeval timeout; - static qboolean stdin_active; + static qboolean stdin_active = qtrue; if (!com_dedicated || !com_dedicated->value) return NULL;