Changeset 586
- Timestamp:
- Jun 28, 2011, 6:50:51 PM (14 years ago)
- Location:
- trunk/server/source3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/server/source3/dynconfig.c ¶
r483 r586 112 112 { 113 113 char exedir[1024] = ""; 114 if ( os2_GetExePath(exedir) != 0)114 if (!os2_GetExePath(exedir)) 115 115 { 116 116 snprintf(buffer, 260, "%s", SBINDIR); … … 133 133 { 134 134 char exedir[1024] = ""; 135 if ( os2_GetExePath(exedir) != 0)135 if (!os2_GetExePath(exedir)) 136 136 { 137 137 snprintf(buffer, 260, "%s", BINDIR); … … 154 154 { 155 155 char exedir[1024] = ""; 156 if ( os2_GetExePath(exedir) != 0)156 if (!os2_GetExePath(exedir)) 157 157 { 158 158 snprintf(buffer, 260, "%s", SWATDIR); … … 235 235 { 236 236 char exedir[1024] = ""; 237 if ( os2_GetExePath(exedir) != 0)237 if (!os2_GetExePath(exedir)) 238 238 { 239 239 snprintf(buffer, 260, "%s", CODEPAGEDIR); … … 256 256 { 257 257 char exedir[1024] = ""; 258 if ( os2_GetExePath(exedir) != 0)258 if (!os2_GetExePath(exedir)) 259 259 { 260 260 snprintf(buffer, 260, "%s", LIBDIR); … … 277 277 { 278 278 char exedir[1024] = ""; 279 if ( os2_GetExePath(exedir) != 0)279 if (!os2_GetExePath(exedir)) 280 280 { 281 281 snprintf(buffer, 260, "%s", MODULESDIR); … … 359 359 { 360 360 char exedir[1024] = ""; 361 if ( os2_GetExePath(exedir) != 0)361 if (!os2_GetExePath(exedir)) 362 362 { 363 363 snprintf(buffer, 260, "%s", LIBDIR); … … 380 380 { 381 381 char exedir[1024] = ""; 382 if ( os2_GetExePath(exedir) != 0)382 if (!os2_GetExePath(exedir)) 383 383 { 384 384 snprintf(buffer, 260, "%s", NCALRPCDIR); -
TabularUnified trunk/server/source3/lib/os2helper.c ¶
r483 r586 97 97 98 98 // get the exe name (including path) 99 bool os2_GetExeName(char *sExeName )99 bool os2_GetExeName(char *sExeName, int lExeName) 100 100 { 101 101 APIRET rc = NO_ERROR; … … 110 110 111 111 // with the module name we get the path (including the exe name) 112 rc = DosQueryModuleName(ppib->pib_hmte, sizeof(sExeName), sExeName);112 rc = DosQueryModuleName(ppib->pib_hmte, lExeName, sExeName); 113 113 if (rc != NO_ERROR) 114 114 { … … 124 124 char sDrive [_MAX_PATH], sDir [_MAX_DIR]; 125 125 126 if (!os2_GetExeName(sExeName ))126 if (!os2_GetExeName(sExeName, sizeof(sExeName))) 127 127 return false; 128 128 … … 133 133 strcpy(buff, sDrive); 134 134 135 return 0;135 return true; 136 136 } 137 137 … … 142 142 char sDrive [_MAX_PATH], sDir [_MAX_DIR], sName[_MAX_PATH]; 143 143 144 if (!os2_GetExeName(sExeName ))144 if (!os2_GetExeName(sExeName, sizeof(sExeName))) 145 145 return false; 146 146 -
TabularUnified trunk/server/source3/version.ec_ ¶
r454 r586 1 SAMBA_VERSION_VENDOR_SUFFIX="eCS 1. 1.0"1 SAMBA_VERSION_VENDOR_SUFFIX="eCS 1.2.0" 2 2 SAMBA_VERSION_VENDOR_PATCH=432
Note:
See TracChangeset
for help on using the changeset viewer.