summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.bin/sed/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sed/main.c b/usr.bin/sed/main.c
index 015b8bc119a..7df35bbbd26 100644
--- a/usr.bin/sed/main.c
+++ b/usr.bin/sed/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.27 2015/10/10 20:18:30 deraadt Exp $ */
+/* $OpenBSD: main.c,v 1.28 2015/10/25 20:18:37 tobias Exp $ */
/*-
* Copyright (c) 1992 Diomidis Spinellis.
@@ -389,7 +389,7 @@ mf_fgets(SPACE *sp, enum e_spflag spflag)
outfname = "stdout";
}
if ((infile = fopen(fname, "r")) == NULL) {
- err(WARNING, "%s", fname);
+ err(WARNING, "%s", strerror(errno));
rval = 1;
continue;
}