~ubuntu-branches/ubuntu/precise/tcpdump/precise-updates

« back to all changes in this revision

Viewing changes to print-rrcp.c

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber
  • Date: 2012-01-04 10:33:48 UTC
  • mfrom: (7.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20120104103348-6i4d0riwu9laykex
Tags: 4.2.1-1ubuntu1
* Resynchronise with Debian.  Remaining changes (LP: #892285):
  - Add enforcing AppArmor profile.
* Refreshed manpage patch to apply to new upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
        if (rrcp_opcode==1 || rrcp_opcode==2){
112
112
            ND_TCHECK2(*(rrcp + RRCP_REG_ADDR_OFFSET), 6);
113
113
            ND_PRINT((ndo, " addr=0x%04x, data=0x%08x",
114
 
                     EXTRACT_16BITS(rrcp + RRCP_REG_ADDR_OFFSET),
115
 
                     EXTRACT_32BITS(rrcp + RRCP_REG_DATA_OFFSET)));
 
114
                     EXTRACT_LE_16BITS(rrcp + RRCP_REG_ADDR_OFFSET),
 
115
                     EXTRACT_LE_32BITS(rrcp + RRCP_REG_DATA_OFFSET)));
116
116
        }
117
117
        if (rrcp_proto==1){
118
118
            ND_TCHECK2(*(rrcp + RRCP_AUTHKEY_OFFSET), 2);