~ubuntu-branches/debian/sid/kamailio/sid

« back to all changes in this revision

Viewing changes to modules/ratelimit/ratelimit.c

  • Committer: Package Import Robot
  • Author(s): Victor Seva
  • Date: 2014-01-06 11:47:13 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140106114713-t8xidp4arzrnyeya
Tags: 4.1.1-1
* New upstream release
* debian/patches:
  - add upstream fixes
* Added tls outbound websocket autheph dnssec modules
  - openssl exception added to their license
* removing sparc and ia64 from supported archs
  for mono module (Closes: #728915)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1189
1189
 
1190
1190
        if (rpc->scan(c, "dSd", &queue_no, &method, &pipe_no) < 3) return;
1191
1191
 
1192
 
        if (pipe_no >= MAX_PIPES || pipe_no < 0) {
 
1192
        if (pipe_no >= MAX_PIPES || (int)pipe_no < 0) {
1193
1193
                LM_ERR("Invalid pipe number: %d\n", pipe_no);
1194
1194
                rpc->fault(c, 400, "Invalid pipe number");
1195
1195
                return;