diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-11-07 09:21:35 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-11-07 09:21:35 +0000 |
commit | cbd1a77ec24e397d05f20c6de106625676343c9d (patch) | |
tree | b92440210b287a25e34293646d26fe124581c767 /lib/nwos.c | |
parent | 33f7ac06c3aaecf995360323d6f425e769e6fa79 (diff) | |
download | curl-cbd1a77ec24e397d05f20c6de106625676343c9d.tar.gz |
if () => if()
while () => while()
and some other minor re-indentings
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; |