Show
Ignore:
Timestamp:
04/07/09 10:19:43 (15 years ago)
Author:
bhilburn
Message:

Changed more \t over to spaces. Please check your vimrcs!!!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/src/lib/socketcomm/socketcomm.cpp

    r229 r232  
    4848    size_t i; 
    4949    for(i = 0; i < 256; i++) { 
    50             if(strcmp(&msgBuffer[i], "\0") == 0) 
     50        if(strcmp(&msgBuffer[i], "\0") == 0) 
    5151            break; 
    5252    } 
     
    123123{ 
    124124    ssize_t numSentBytes = send(socketFD, message, (strlen(message) + 1), 0); 
    125         if(numSentBytes < 0) { 
     125    if(numSentBytes < 0) { 
    126126        ERROR(1, "Error sending to server %i (%i): %s\n",socketFD, numSentBytes, message); 
    127127    }