projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
f180df8
)
mode argument to do_binmode() should be file mode, not boolean
Gurusamy Sarathy [Mon, 24 Apr 2000 03:22:03 +0000 (
03:22
+0000)]
p4raw-id: //depot/perl@5909
pp_sys.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_sys.c
b/pp_sys.c
index
0ec539d
..
00de34a
100644
(file)
--- a/
pp_sys.c
+++ b/
pp_sys.c
@@
-3078,7
+3078,7
@@
PP(pp_fttext)
(void)PerlIO_close(fp);
RETPUSHUNDEF;
}
- do_binmode(fp, '<', TRUE);
+ do_binmode(fp, '<', O_BINARY);
len = PerlIO_read(fp, tbuf, sizeof(tbuf));
(void)PerlIO_close(fp);
if (len <= 0) {