auth/factotum: fix flush (thanks Erik Quanstrom)

R=rsc
http://codereview.appspot.com/6402044
This commit is contained in:
Russ Cox 2012-07-14 08:30:51 -04:00
parent 63550fce0e
commit 9d4f8bfecc

View file

@ -419,8 +419,9 @@ fswrite(Req *r)
static void
fsflush(Req *r)
{
confirmflush(r);
logflush(r);
confirmflush(r->oldreq);
logflush(r->oldreq);
respond(r, nil);
}
static void