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:
c0f8856
)
Fix thinko in previous change.
author
Chris Hanson
<org/chris-hanson/cph>
Tue, 22 May 2001 02:21:10 +0000
(
02:21
+0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Tue, 22 May 2001 02:21:10 +0000
(
02:21
+0000)
v7/src/microcode/ntfs.c
patch
|
blob
|
history
diff --git
a/v7/src/microcode/ntfs.c
b/v7/src/microcode/ntfs.c
index 46a5476941ce9e0a41aa24d6fe507552433811f1..4187bd5f64b2a2fbad17e95e7537f3bf611ca6cb 100644
(file)
--- a/
v7/src/microcode/ntfs.c
+++ b/
v7/src/microcode/ntfs.c
@@
-1,6
+1,6
@@
/* -*-C-*-
-$Id: ntfs.c,v 1.2
7 2001/05/09 03:14:54
cph Exp $
+$Id: ntfs.c,v 1.2
8 2001/05/22 02:21:10
cph Exp $
Copyright (c) 1992-2001 Massachusetts Institute of Technology
@@
-179,7
+179,7
@@
OS_file_type_direct (const char * name)
{
BY_HANDLE_FILE_INFORMATION info;
return
- (((NT_get_file_info (
(STRING_ARG (1))
, (&info), 0)) == gfi_not_found)
+ (((NT_get_file_info (
name
, (&info), 0)) == gfi_not_found)
? file_type_nonexistent
: (((info . dwFileAttributes) & FILE_ATTRIBUTE_DIRECTORY) == 0)
? file_type_regular