Changeset 633

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

Missed the indentation.

Files:

Legend:

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

    r632 r633  
    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    }