mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
15 lines
332 B
Plaintext
15 lines
332 B
Plaintext
$NetBSD: patch-af,v 1.1 2008/02/04 14:34:10 obache Exp $
|
|
|
|
--- edit.c.orig 2008-02-04 13:36:20.000000000 +0000
|
|
+++ edit.c
|
|
@@ -706,7 +706,8 @@ use_logfile(filename)
|
|
*/
|
|
filename = shell_unquote(filename);
|
|
exists = open(filename, OPEN_READ);
|
|
- close(exists);
|
|
+ if (exists >= 0)
|
|
+ close(exists);
|
|
exists = (exists >= 0);
|
|
|
|
/*
|