~ubuntu-branches/ubuntu/quantal/iproute/quantal-updates

« back to all changes in this revision

Viewing changes to tc/tc_class.c

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-05-22 14:10:07 UTC
  • mfrom: (1.1.15) (23.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20120522141007-uuwicj2cx2x71vfb
Tags: 20120319-1ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Mark iproute as Multi-Arch: foreign.
  - Add cross-building support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
                }
139
139
        }
140
140
 
141
 
        if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0)
 
141
        if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0)
142
142
                return 2;
143
143
 
144
144
        return 0;
298
298
                return 1;
299
299
        }
300
300
 
301
 
        if (rtnl_dump_filter(&rth, print_class, stdout, NULL, NULL) < 0) {
 
301
        if (rtnl_dump_filter(&rth, print_class, stdout) < 0) {
302
302
                fprintf(stderr, "Dump terminated\n");
303
303
                return 1;
304
304
        }