OSDN Git Service

* fhandler_registry.cc (fhandler_registry::fstat): Use RegQueryInfoKeyW.
authorcorinna <corinna>
Tue, 19 Apr 2011 08:45:36 +0000 (08:45 +0000)
committercorinna <corinna>
Tue, 19 Apr 2011 08:45:36 +0000 (08:45 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/fhandler_registry.cc

index 6136b13..8c6ffbe 100644 (file)
@@ -1,5 +1,9 @@
 2011-04-19  Corinna Vinschen  <corinna@vinschen.de>
 
+       * fhandler_registry.cc (fhandler_registry::fstat): Use RegQueryInfoKeyW.
+
+2011-04-19  Corinna Vinschen  <corinna@vinschen.de>
+
        * fhandler_proc.cc (read_value): Remove definition.
        (print): Simplify.
        (format_proc_cpuinfo): Drop useless call to GetSystemInfo.  Rearrange
index b9c9a8e..f2e80ce 100644 (file)
@@ -1,7 +1,7 @@
 /* fhandler_registry.cc: fhandler for /proc/registry virtual filesystem
 
    Copyright 2002, 2003, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
-   2010 Red Hat, Inc.
+   2010, 2011 Red Hat, Inc.
 
 This file is part of Cygwin.
 
@@ -456,9 +456,8 @@ fhandler_registry::fstat (struct __stat64 *buf)
          FILETIME ftLastWriteTime;
          DWORD subkey_count;
          if (ERROR_SUCCESS ==
-             RegQueryInfoKey (hKey, NULL, NULL, NULL, &subkey_count, NULL,
-                              NULL, NULL, NULL, NULL, NULL,
-                              &ftLastWriteTime))
+             RegQueryInfoKeyW (hKey, NULL, NULL, NULL, &subkey_count, NULL,
+                               NULL, NULL, NULL, NULL, NULL, &ftLastWriteTime))
            {
              to_timestruc_t (&ftLastWriteTime, &buf->st_mtim);
              buf->st_ctim = buf->st_birthtim = buf->st_mtim;