projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4af07e4
)
Fix: W32 file-system flags can be a bignum.
author
Chris Hanson
<org/chris-hanson/cph>
Sun, 20 Dec 2009 10:29:01 +0000
(
02:29
-0800)
committer
Chris Hanson
<org/chris-hanson/cph>
Sun, 20 Dec 2009 10:29:01 +0000
(
02:29
-0800)
src/runtime/ntprm.scm
patch
|
blob
|
history
diff --git
a/src/runtime/ntprm.scm
b/src/runtime/ntprm.scm
index 36ede8068c2896bba42943133192b265c6538755..a6e08f06a20f62c826bd2de2629dfb8a19e4a422 100644
(file)
--- a/
src/runtime/ntprm.scm
+++ b/
src/runtime/ntprm.scm
@@
-346,9
+346,8
@@
USA.
;; Samba normally advertises itself as NTFS, except that
;; it doesn't claim to store Unicode on the disk.
(if (and (string-ci=? name "NTFS")
- (fix:= 0
- (fix:and (nt-volume-info/file-system-flags info)
- nt-fs-flag/unicode-on-disk)))
+ (even? (quotient (nt-volume-info/file-system-flags info)
+ nt-fs-flag/unicode-on-disk)))
"Samba"
name)))
""))