diff options
Diffstat (limited to 'lib/nwos.c')
-rw-r--r-- | lib/nwos.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/nwos.c b/lib/nwos.c index a84a3daf2..d9bfcf15e 100644 --- a/lib/nwos.c +++ b/lib/nwos.c @@ -57,17 +57,17 @@ int netware_init ( void ) /* import UseAccurateCaseForPaths dynamically for NW3.x compatibility */ void (*pUseAccurateCaseForPaths)(int) = (void(*)(int)) ImportSymbol(myHandle, "UseAccurateCaseForPaths"); - if (pUnAugmentAsterisk) + if(pUnAugmentAsterisk) pUnAugmentAsterisk(1); - if (pUseAccurateCaseForPaths) + if(pUseAccurateCaseForPaths) pUseAccurateCaseForPaths(1); UnimportSymbol(myHandle, "UnAugmentAsterisk"); UnimportSymbol(myHandle, "UseAccurateCaseForPaths"); /* set long name space */ - if ((SetCurrentNameSpace(4) == 255)) { + if((SetCurrentNameSpace(4) == 255)) { rc = 1; } - if ((SetTargetNameSpace(4) == 255)) { + if((SetTargetNameSpace(4) == 255)) { rc = rc + 2; } return rc; |