summaryrefslogtreecommitdiff
path: root/methods
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2005-12-08 18:07:48 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2005-12-08 18:07:48 +0000
commitfc25afd0b3fbe47a9ded2978142dadafe52a989b (patch)
tree6604b7df797e34ad2347c00d7b727c3b943127d8 /methods
parent193593331d2833dbc640f3bb1ad3dd6bfaac858f (diff)
parentb7475c1ea32e60fca03b7092bfe7ee3fd3dfde47 (diff)
* star-merged with apt--mvo
Patches applied: * bubulle@debian.org--2005/apt--main--0--patch-133 Merge with Michael AND update PO files * michael.vogt@ubuntu.com--2005/apt--mvo--0--patch-102 * finalized this release * michael.vogt@ubuntu.com--2005/apt--mvo--0--patch-103 * changelog updates * michael.vogt@ubuntu.com--2005/apt--mvo--0--patch-104 * build-depend on libdb4.3 now, fix for kFreeBSD (#317718) * michael.vogt@ubuntu.com--2005/apt--mvo--0--patch-105 * fix mailaddress * michael.vogt@ubuntu.com--2005/apt--mvo--0--patch-106 * fix a string (thanks to bubulle) * michael.vogt@ubuntu.com--2005/apt--mvo--0--patch-107 * merged with bubulle
Diffstat (limited to 'methods')
-rw-r--r--methods/http.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/methods/http.cc b/methods/http.cc
index d308d72b0..dc3f0b763 100644
--- a/methods/http.cc
+++ b/methods/http.cc
@@ -827,7 +827,7 @@ bool HttpMethod::Flush(ServerState *Srv)
// on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
// can't be set
if (File->Name() != "/dev/null")
- SetNonBlock(File->Fd(),false);
+ SetNonBlock(File->Fd(),false);
if (Srv->In.WriteSpace() == false)
return true;
@@ -858,7 +858,7 @@ bool HttpMethod::ServerDie(ServerState *Srv)
// on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
// can't be set
if (File->Name() != "/dev/null")
- SetNonBlock(File->Fd(),false);
+ SetNonBlock(File->Fd(),false);
while (Srv->In.WriteSpace() == true)
{
if (Srv->In.Write(File->Fd()) == false)