diff options
author | Christian Pointner <equinox@anytun.org> | 2009-01-31 14:35:33 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2009-01-31 14:35:33 +0000 |
commit | 2b5726ccf83d4dec16d582e4a9b51a0a76938e65 (patch) | |
tree | 4b64a7218cdfe79e7e3d1083548cb989c0c8ae2f /src/win32/registryKey.cpp | |
parent | started to port bsd tundevice to new ifconfig feature (diff) |
some fixes for tunDevice on Windows Vista
Diffstat (limited to 'src/win32/registryKey.cpp')
-rw-r--r-- | src/win32/registryKey.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win32/registryKey.cpp b/src/win32/registryKey.cpp index f0ab73d..7112745 100644 --- a/src/win32/registryKey.cpp +++ b/src/win32/registryKey.cpp @@ -108,7 +108,7 @@ DWORD RegistryKey::getSubKey(DWORD index, RegistryKey& subKey, REGSAM sam) const { char subkeyname[NAME_LENGTH]; DWORD len = sizeof(subkeyname); - DWORD err = RegEnumKeyEx(key_, index, subkeyname, &len, NULL, NULL, NULL, NULL); + DWORD err = RegEnumKeyEx(key_, index, subkeyname, &len, NULL, NULL, NULL, NULL); if(err != ERROR_SUCCESS) return err; |