Changeset 585 for branches/samba-3.3.x/source/dynconfig.c
- Timestamp:
- Jun 28, 2011, 6:49:53 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/dynconfig.c
r482 r585 110 110 { 111 111 char exedir[1024] = ""; 112 if ( os2_GetExePath(exedir) != 0)112 if (!os2_GetExePath(exedir)) 113 113 { 114 114 snprintf(buffer, 260, "%s", SBINDIR); … … 131 131 { 132 132 char exedir[1024] = ""; 133 if ( os2_GetExePath(exedir) != 0)133 if (!os2_GetExePath(exedir)) 134 134 { 135 135 snprintf(buffer, 260, "%s", BINDIR); … … 152 152 { 153 153 char exedir[1024] = ""; 154 if ( os2_GetExePath(exedir) != 0)154 if (!os2_GetExePath(exedir)) 155 155 { 156 156 snprintf(buffer, 260, "%s", SWATDIR); … … 233 233 { 234 234 char exedir[1024] = ""; 235 if ( os2_GetExePath(exedir) != 0)235 if (!os2_GetExePath(exedir)) 236 236 { 237 237 snprintf(buffer, 260, "%s", CODEPAGEDIR); … … 254 254 { 255 255 char exedir[1024] = ""; 256 if ( os2_GetExePath(exedir) != 0)256 if (!os2_GetExePath(exedir)) 257 257 { 258 258 snprintf(buffer, 260, "%s", LIBDIR); … … 275 275 { 276 276 char exedir[1024] = ""; 277 if ( os2_GetExePath(exedir) != 0)277 if (!os2_GetExePath(exedir)) 278 278 { 279 279 snprintf(buffer, 260, "%s", MODULESDIR); … … 357 357 { 358 358 char exedir[1024] = ""; 359 if ( os2_GetExePath(exedir) != 0)359 if (!os2_GetExePath(exedir)) 360 360 { 361 361 snprintf(buffer, 260, "%s", LIBDIR);
Note:
See TracChangeset
for help on using the changeset viewer.