~cpick/mongrel2/release

« back to all changes in this revision

Viewing changes to tests/httpclient_tests.c

  • Committer: Chris Pick
  • Date: 2013-06-30 16:39:57 UTC
  • mfrom: (1106.1.15)
  • Revision ID: git-v1:ec39967acb6bc9867ed9b9dc3774304ca6b9c294
Merge tag 'v1.8.1' into debian

Hotfix for github issue 148

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
char *test_parser_thrashing()
57
57
{
58
58
    glob_t test_files;
59
 
    int i = 0;
 
59
    unsigned int i = 0;
60
60
    int nparsed = 0;
61
61
    int tests_run = 0;
62
62
    int execs_run = 0;
90
90
                    nparsed, httpclient_parser_has_error(&p), 
91
91
                    httpclient_parser_is_finished(&p));
92
92
        } else if(p.chunked) {
93
 
            int start = p.body_start;
 
93
            unsigned int start = p.body_start;
94
94
 
95
95
            do {
96
96
                httpclient_parser_init(&p);