No need to specify "rb" and "wb" in fopen, use "r" and "w"
This commit is contained in:
parent
66e1bbccf3
commit
2f6ffc9ec9
4
tar.c
4
tar.c
|
@ -316,7 +316,7 @@ main(int argc, char *argv[])
|
||||||
switch (mode) {
|
switch (mode) {
|
||||||
case 'c':
|
case 'c':
|
||||||
if (file) {
|
if (file) {
|
||||||
if (!(fp = fopen(file, "wb")))
|
if (!(fp = fopen(file, "w")))
|
||||||
eprintf("fopen %s:", file);
|
eprintf("fopen %s:", file);
|
||||||
if (lstat(file, &st) < 0)
|
if (lstat(file, &st) < 0)
|
||||||
eprintf("tar: stat '%s':", file);
|
eprintf("tar: stat '%s':", file);
|
||||||
|
@ -332,7 +332,7 @@ main(int argc, char *argv[])
|
||||||
case 't':
|
case 't':
|
||||||
case 'x':
|
case 'x':
|
||||||
if (file) {
|
if (file) {
|
||||||
if (!(fp = fopen(file, "rb")))
|
if (!(fp = fopen(file, "r")))
|
||||||
eprintf("fopen %s:", file);
|
eprintf("fopen %s:", file);
|
||||||
} else {
|
} else {
|
||||||
fp = stdin;
|
fp = stdin;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user