From: Paul Eggert Date: Sun, 3 Jul 2005 07:19:06 +0000 (+0000) Subject: Include stdio--.h, not stdio-safer.h. X-Git-Tag: CPPI-1_12~381 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8359085a7606bf035dab89aad445dd0320b08ad4;p=platform%2Fupstream%2Fcoreutils.git Include stdio--.h, not stdio-safer.h. (open_file): Invoke fopen, not fopen_safer. --- diff --git a/src/pr.c b/src/pr.c index 8dc35f1..3438faf 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) {