summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-07-03 07:19:06 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-07-03 07:19:06 +0000
commit8359085a7606bf035dab89aad445dd0320b08ad4 (patch)
treecbb9b3fef2a21cfcda5baff5491aee806fc88ed8 /src
parent2eeccaacd9fcb677ed963b5f2f6a7908f87a5125 (diff)
downloadcoreutils-8359085a7606bf035dab89aad445dd0320b08ad4.tar.xz
Include stdio--.h, not stdio-safer.h.
(open_file): Invoke fopen, not fopen_safer.
Diffstat (limited to 'src')
-rw-r--r--src/pr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pr.c b/src/pr.c
index 8dc35f197..3438fafb4 100644
--- a/src/pr.c
+++ b/src/pr.c
@@ -320,7 +320,7 @@
#include "inttostr.h"
#include "mbswidth.h"
#include "quote.h"
-#include "stdio-safer.h"
+#include "stdio--.h"
#include "strftime.h"
#include "xstrtol.h"
@@ -1506,7 +1506,7 @@ open_file (char *name, COLUMN *p)
else
{
p->name = name;
- p->fp = fopen_safer (name, "r");
+ p->fp = fopen (name, "r");
}
if (p->fp == NULL)
{