diff options
author | tron <tron@pkgsrc.org> | 1999-06-12 21:33:19 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-06-12 21:33:19 +0000 |
commit | 720e9cf85ee718da213025c4d97e3e439d94adfd (patch) | |
tree | ad79ed8b4741ff0afdd02a65a4fcb98ba9f7a9f8 | |
parent | 4b6588c30fdaacb1c1890da505b711488a7478e3 (diff) | |
download | pkgsrc-720e9cf85ee718da213025c4d97e3e439d94adfd.tar.gz |
Correct reversed patch. Problem noted by Douglas Brebner in PR pkg/7765.
-rw-r--r-- | net/sendfile/patches/patch-ab | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/sendfile/patches/patch-ab b/net/sendfile/patches/patch-ab index 67940b504fc..36819d445c8 100644 --- a/net/sendfile/patches/patch-ab +++ b/net/sendfile/patches/patch-ab @@ -1,4 +1,4 @@ -$NetBSD: patch-ab,v 1.1.1.1 1999/06/06 17:08:37 hwr Exp $ +$NetBSD: patch-ab,v 1.2 1999/06/12 21:33:19 tron Exp $ --- src/sendfiled.c Sun Jun 6 18:31:25 1999 +++ src/sendfiled.c.orig Thu Oct 29 17:48:08 1998 @@ -6,8 +6,8 @@ $NetBSD: patch-ab,v 1.1.1.1 1999/06/06 17:08:37 hwr Exp $ exit(1); } if (wlock_file(lockf)<0) { -- snprintf(MAXS(tmp),"cannot lock %s : %s",lockfn,strerror(errno)); -+ snprintf(MAXS(tmp),"cannot lock %s : ",lockfn,strerror(errno)); +- snprintf(MAXS(tmp),"cannot lock %s : ",lockfn,strerror(errno)); ++ snprintf(MAXS(tmp),"cannot lock %s : %s",lockfn,strerror(errno)); dbgout(tmp); exit(1); } |