diff options
Diffstat (limited to 'src/libventi/server.c')
-rw-r--r-- | src/libventi/server.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libventi/server.c b/src/libventi/server.c index 91752200..58ce1d8d 100644 --- a/src/libventi/server.c +++ b/src/libventi/server.c @@ -180,7 +180,7 @@ VtReq* vtgetreq(VtSrv *srv) { VtReq *r; - + r = _vtqrecv(srv->q); if (r != nil) vtlog(VtServerLog, "<font size=-1>%T %s:</font> vtgetreq %F<br>\n", ((VtSconn*)r->sc)->c->addr, &r->tx); @@ -215,4 +215,3 @@ vtrespond(VtReq *r) vtfcallclear(&r->rx); vtfree(r); } - |