Changeset 632

Show
Ignore:
Timestamp:
11/14/07 08:47:37 (1 year ago)
Author:
dormando
Message:

Remove garbage whitespace, trunk now compiles again!

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/server/memcached.c

    r631 r632  
    11921192        fprintf(stderr, ">%d END\n", c->sfd); 
    11931193 
    1194  Â Â Â /* 
    1195  Â Â Â Â Â If the loop was terminated because of out-of-memory, it is not 
    1196  Â Â Â Â Â reliable to add END\r\n to the buffer, because it might not end 
    1197  Â Â Â Â Â in \r\n.  So we send SERVER_ERROR instead. 
    1198  Â Â Â */ 
    1199  Â Â Â if (key_token->value != NULL || add_iov(c, "END\r\n", 5) != 0 
    1200  Â Â Â Â Â Â Â || (c->udp && build_udp_headers(c) != 0)) { 
     1194        /* 
     1195            If the loop was terminated because of out-of-memory, it is not 
     1196            reliable to add END\r\n to the buffer, because it might not end 
     1197            in \r\n. So we send SERVER_ERROR instead. 
     1198        */ 
     1199        if (key_token->value != NULL || add_iov(c, "END\r\n", 5) != 0 
     1200            || (c->udp && build_udp_headers(c) != 0)) { 
    12011201        out_string(c, "SERVER_ERROR out of memory"); 
    12021202    }