Ver código fonte

Flush before waiting for new input, not after

tags/1.2
Timo Röhling 10 anos atrás
pai
commit
a4a53c7b9f
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      postsrsd.c

+ 1
- 1
postsrsd.c Ver arquivo

@@ -476,8 +476,8 @@ int main (int argc, char **argv)
476 476
             key = url_decode(keybuf, sizeof(keybuf), token);
477 477
             if (!key) break;
478 478
             handler[i](srs, fp, key, domain, excludes);
479
-            if (poll(&fds[2], 1, timeout * 1000) <= 0) break;
480 479
             fflush (fp);
480
+            if (poll(&fds[2], 1, timeout * 1000) <= 0) break;
481 481
             line = fgets(linebuf, sizeof(linebuf), fp);
482 482
           }
483 483
           fclose (fp);

Carregando…
Cancelar
Salvar