Changeset 488:b75e55e6d4dd in qutecom-2.2


Ignore:
Timestamp:
Feb 20, 2010 3:18:46 PM (3 years ago)
Author:
laurent@…
Branch:
default
Message:

bug fix : updater path

Location:
wengophone
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wengophone/resources/config/config.xml

    r487 r488  
    196196<wengo.server.hostname><string>mbdsys.com</string></wengo.server.hostname> 
    197197<wengo.sms.path><string>/sms/sendsms.php</string></wengo.sms.path> 
    198 <wengo.softupdate.path><string>/QuteCom/update</string></wengo.softupdate.path> 
     198<wengo.softupdate.path><string>/QuteCom/update/</string></wengo.softupdate.path> 
    199199<wengo.sso.path><string>/softphone-sso/sso2.php</string></wengo.sso.path> 
    200200<wengo.subscribe.path><string>/softphone-subscription/index.php</string></wengo.subscribe.path> 
  • wengophone/src/model/webservices/softupdate/WsSoftUpdate.cpp

    r486 r488  
    4545                 
    4646#ifdef OS_WINDOWS 
    47         path += "windows.xml"; 
     47        path += "/windows.xml"; 
    4848#elif defined (OS_MACOSX) 
    4949#if defined (__BIG_ENDIAN__) 
    50         path += "osx_ppc.xml"; 
     50        path += "/osx_ppc.xml"; 
    5151#else 
    52         path += "osx_x86.xml"; 
     52        path += "/osx_x86.xml"; 
    5353#endif 
    5454#elif defined (OS_LINUX) 
    55         path += "linux.xml"; 
     55        path += "/linux.xml"; 
    5656#endif 
    5757                 
Note: See TracChangeset for help on using the changeset viewer.