Changeset 507

Show
Ignore:
Timestamp:
07/22/08 16:49:52 (4 months ago)
Author:
bellmich
Message:

fixed several cmompiler warnings (missed tools directory in last commit)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tools/syncml-http-client.c

    r474 r507  
    311311                        break; 
    312312                case SML_MANAGER_SESSION_FLUSH: 
     313                        break; 
     314                default: 
     315                        printf("ERROR: Unknown signal %d", type); 
    313316                        break; 
    314317        } 
  • trunk/tools/syncml-http-server.c

    r474 r507  
    297297                        smlManagerQuit(manager); 
    298298                        g_main_loop_quit(loop); 
     299                        break; 
     300                default: 
     301                        printf("ERROR: Unknown signal %d", type); 
    299302                        break; 
    300303        } 
  • trunk/tools/syncml-obex-client.c

    r505 r507  
    295295                        printf("connection with device succeeded\n"); 
    296296                        break; 
     297                case SML_MANAGER_SESSION_ESTABLISHED: 
     298                        printf("session incl. authentication successfully established\n"); 
     299                        break; 
    297300                case SML_MANAGER_DISCONNECT_DONE: 
    298301                        printf("connection with device has ended\n"); 
     
    334337                                smlDevInfSetSupportsNumberOfChanges(devinf, smlDevInfSupportsNumberOfChanges(deviceDevinf)); 
    335338                        } 
    336                         if (deviceDevinf && smlDevInfSupportsLargeObjs(deviceDevinf) || 
    337                             !deviceDevinf && useLargeObjs) { 
     339                        if ((deviceDevinf && smlDevInfSupportsLargeObjs(deviceDevinf)) || 
     340                            (!deviceDevinf && useLargeObjs)) { 
    338341                                /* enable standard compliant large object support */ 
    339342                                if (recvLimit)