diff options
-rw-r--r-- | hw/xwin/InitOutput.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/hw/xwin/InitOutput.c b/hw/xwin/InitOutput.c index 3525892b8..d154d0ef8 100644 --- a/hw/xwin/InitOutput.c +++ b/hw/xwin/InitOutput.c @@ -1,3 +1,4 @@ + /* Copyright 1993, 1998 The Open Group @@ -363,11 +364,11 @@ winCheckMount(void) continue; level = curlevel; - if ((winCheckMntOpt(ent, "binary") == NULL) || + if ((winCheckMntOpt(ent, "binary") == NULL) && (winCheckMntOpt(ent, "binmode") == NULL)) - binary = 0; + binary = FALSE; else - binary = 1; + binary = TRUE; } if (endmntent(mnt) != 1) |