Changeset 586


Ignore:
Timestamp:
Jun 28, 2011, 6:50:51 PM (14 years ago)
Author:
Silvan Scherrer
Message:

samba server 3.5: reworked os2_getexename()

Location:
trunk/server/source3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/server/source3/dynconfig.c

    r483 r586  
    112112        {
    113113                char exedir[1024] = "";
    114                 if (os2_GetExePath(exedir) != 0)
     114                if (!os2_GetExePath(exedir))
    115115                {
    116116                        snprintf(buffer, 260, "%s", SBINDIR);
     
    133133        {
    134134                char exedir[1024] = "";
    135                 if (os2_GetExePath(exedir) != 0)
     135                if (!os2_GetExePath(exedir))
    136136                {
    137137                        snprintf(buffer, 260, "%s", BINDIR);
     
    154154        {
    155155                char exedir[1024] = "";
    156                 if (os2_GetExePath(exedir) != 0)
     156                if (!os2_GetExePath(exedir))
    157157                {
    158158                        snprintf(buffer, 260, "%s", SWATDIR);
     
    235235        {
    236236                char exedir[1024] = "";
    237                 if (os2_GetExePath(exedir) != 0)
     237                if (!os2_GetExePath(exedir))
    238238                {
    239239                        snprintf(buffer, 260, "%s", CODEPAGEDIR);
     
    256256        {
    257257                char exedir[1024] = "";
    258                 if (os2_GetExePath(exedir) != 0)
     258                if (!os2_GetExePath(exedir))
    259259                {
    260260                        snprintf(buffer, 260, "%s", LIBDIR);
     
    277277        {
    278278                char exedir[1024] = "";
    279                 if (os2_GetExePath(exedir) != 0)
     279                if (!os2_GetExePath(exedir))
    280280                {
    281281                        snprintf(buffer, 260, "%s", MODULESDIR);
     
    359359        {
    360360                char exedir[1024] = "";
    361                 if (os2_GetExePath(exedir) != 0)
     361                if (!os2_GetExePath(exedir))
    362362                {
    363363                        snprintf(buffer, 260, "%s", LIBDIR);
     
    380380        {
    381381                char exedir[1024] = "";
    382                 if (os2_GetExePath(exedir) != 0)
     382                if (!os2_GetExePath(exedir))
    383383                {
    384384                        snprintf(buffer, 260, "%s", NCALRPCDIR);
  • TabularUnified trunk/server/source3/lib/os2helper.c

    r483 r586  
    9797
    9898// get the exe name (including path)
    99 bool os2_GetExeName(char *sExeName)
     99bool os2_GetExeName(char *sExeName, int lExeName)
    100100{
    101101        APIRET rc = NO_ERROR;
     
    110110
    111111        // 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);
    113113        if (rc != NO_ERROR)
    114114        {
     
    124124        char sDrive [_MAX_PATH], sDir [_MAX_DIR];
    125125
    126         if (!os2_GetExeName(sExeName))
     126        if (!os2_GetExeName(sExeName, sizeof(sExeName)))
    127127                return false;
    128128
     
    133133        strcpy(buff, sDrive);
    134134
    135         return 0;
     135        return true;
    136136}
    137137
     
    142142        char sDrive [_MAX_PATH], sDir [_MAX_DIR], sName[_MAX_PATH];
    143143
    144         if (!os2_GetExeName(sExeName))
     144        if (!os2_GetExeName(sExeName, sizeof(sExeName)))
    145145                return false;
    146146
  • TabularUnified trunk/server/source3/version.ec_

    r454 r586  
    1 SAMBA_VERSION_VENDOR_SUFFIX="eCS 1.1.0"
     1SAMBA_VERSION_VENDOR_SUFFIX="eCS 1.2.0"
    22SAMBA_VERSION_VENDOR_PATCH=432
Note: See TracChangeset for help on using the changeset viewer.