~cpick/mongrel2/release

« back to all changes in this revision

Viewing changes to src/handler_parser.rl

  • 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:
58
58
    }
59
59
 
60
60
    action identifier {
61
 
        check(parser->target_count < parser->target_max, "Request contains too many target listeners.");
 
61
        check(parser->target_count < parser->target_max, "Request contains too many target listeners: %d > %d", parser->target_count, parser->target_max);
62
62
        parser->targets[parser->target_count++] = strtoul(mark, NULL, 10); 
63
63
    }
64
64