summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2010-07-09 19:14:44 +0200
committerMichael Vogt <mvo@debian.org>2010-07-09 19:14:44 +0200
commit115ba31b90e0d6643670d7d079f9f27b0e05f1c2 (patch)
tree2d15582e842e80cc2566c926f1f839688e83b83b
parent358f10d9d47a88cbf0568f042caccfef8678cbc8 (diff)
parent24baab5c477bf1e57a0b169a7bac1d2e9ab0c974 (diff)
* apt-pkg/deb/dpkgpm.cc:
- make the apt/term.log output unbuffered (thanks to Matt Zimmerman)
-rw-r--r--apt-pkg/deb/dpkgpm.cc2
-rw-r--r--debian/changelog4
2 files changed, 5 insertions, 1 deletions
diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc
index 9af7a0792..67291063c 100644
--- a/apt-pkg/deb/dpkgpm.cc
+++ b/apt-pkg/deb/dpkgpm.cc
@@ -656,7 +656,7 @@ bool pkgDPkgPM::OpenLog()
term_out = fopen(logfile_name.c_str(),"a");
if (term_out == NULL)
return _error->WarningE("OpenLog", _("Could not open file '%s'"), logfile_name.c_str());
-
+ setvbuf(term_out, NULL, _IONBF, 0);
chmod(logfile_name.c_str(), 0600);
fprintf(term_out, "\nLog started: %s\n", timestr);
}
diff --git a/debian/changelog b/debian/changelog
index dab703c6b..c4d18d70b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -41,6 +41,10 @@ apt (0.7.26~exp8) UNRELEASED; urgency=low
- make the used MMap moveable (and therefore dynamic resizeable) by
applying (some) mad pointer magic (Closes: #195018)
+ [ Michael Vogt ]
+ * apt-pkg/deb/dpkgpm.cc:
+ - make the apt/term.log output unbuffered (thanks to Matt Zimmerman)
+
[ Julian Andres Klode ]
* methods/ftp.h:
- Handle different logins on the same server (Closes: #586904).