pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/fetch fetch-1.9: Fix inode check for conditional GET.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/44fe3ede7bd2
branches:  trunk
changeset: 419506:44fe3ede7bd2
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Thu Dec 19 23:50:44 2019 +0000

description:
fetch-1.9: Fix inode check for conditional GET.

diffstat:

 net/fetch/Makefile      |  5 ++---
 net/fetch/files/fetch.c |  2 +-
 2 files changed, 3 insertions(+), 4 deletions(-)

diffs (25 lines):

diff -r f1443ffafc9d -r 44fe3ede7bd2 net/fetch/Makefile
--- a/net/fetch/Makefile        Thu Dec 19 22:26:02 2019 +0000
+++ b/net/fetch/Makefile        Thu Dec 19 23:50:44 2019 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.20 2019/07/16 14:47:16 jperkin Exp $
+# $NetBSD: Makefile,v 1.21 2019/12/19 23:50:44 joerg Exp $
 
-DISTNAME=      fetch-1.8
-PKGREVISION=   4
+DISTNAME=      fetch-1.9
 CATEGORIES=    net
 MASTER_SITES=  # empty
 DISTFILES=     # empty
diff -r f1443ffafc9d -r 44fe3ede7bd2 net/fetch/files/fetch.c
--- a/net/fetch/files/fetch.c   Thu Dec 19 22:26:02 2019 +0000
+++ b/net/fetch/files/fetch.c   Thu Dec 19 23:50:44 2019 +0000
@@ -625,7 +625,7 @@
                                goto failure;
                        }
                        if (nsb.st_dev != sb.st_dev ||
-                           nsb.st_ino != nsb.st_ino ||
+                           nsb.st_ino != sb.st_ino ||
                            nsb.st_size != sb.st_size) {
                                warnx("%s: file has changed", URL);
                                fclose(of);



Home | Main Index | Thread Index | Old Index