From 3a1f49c42aae17c23d52486db21fb7c05734dbd2 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Sat, 2 Apr 2011 21:00:45 +0200 Subject: apt-pkg/acquire-item.cc: Use stat buffer if stat was successful, not if it failed (Closes: #620546) --- apt-pkg/acquire-item.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apt-pkg') diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index 2ecb8ed6e..184802ca3 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -841,7 +841,7 @@ string pkgAcqIndex::Custom600Headers() if (ShortDesc().find("Translation") != 0) msg += "\nFail-Ignore: true"; struct stat Buf; - if (stat(Final.c_str(),&Buf) != 0) + if (stat(Final.c_str(),&Buf) == 0) msg += "\nLast-Modified: " + TimeRFC1123(Buf.st_mtime); return msg; -- cgit v1.2.3