Changeset 213 in Main for trunk/Server/http.c


Ignore:
Timestamp:
Oct 3, 2024, 2:45:40 AM (6 weeks ago)
Author:
Nishi
Message:

format the code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/http.c

    r212 r213  
    8383                int i;
    8484                int len;
    85                         int n;
     85                int n;
    8686#ifndef USE_POLL
    8787                struct timeval tv;
     
    344344                free(req->path);
    345345                req->path = result;
    346        
     346
    347347                incr = 0;
    348348                p = malloc(1);
     
    354354                                cbuf[0] = oldc;
    355355                                req->path[j] = 0;
    356        
     356
    357357                                pth = req->path + incr;
    358        
     358
    359359                                if(strcmp(pth, "..") == 0) {
    360360                                        int k;
     
    376376                                        free(tmp);
    377377                                }
    378        
     378
    379379                                incr = j + 1;
    380380                                if(oldc == 0) break;
Note: See TracChangeset for help on using the changeset viewer.