~ubuntu-branches/ubuntu/vivid/ipmitool/vivid-updates

« back to all changes in this revision

Viewing changes to include/ipmitool/ipmi_session.h

  • Committer: Package Import Robot
  • Author(s): Luk Claes
  • Date: 2013-05-07 18:12:12 UTC
  • mfrom: (5.1.11 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20130507181212-fitwelheknk3tqnq
Tags: 1.8.12-1
Merge new upstream from Ubuntu (Closes: #692292).

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
/*
44
44
 * From table 22.25 of the IPMIv2 specification
45
45
 */
 
46
#ifdef HAVE_PRAGMA_PACK
 
47
#pragma pack(1)
 
48
#endif
46
49
struct get_session_info_rsp
47
50
{
48
51
        uint8_t session_handle;
116
119
                        uint16_t console_port;        /* LSBF */
117
120
                } modem_data;
118
121
        } channel_data;
119
 
} __attribute__ ((packed));
 
122
} ATTRIBUTE_PACKING;
 
123
#ifdef HAVE_PRAGMA_PACK
 
124
#pragma pack(0)
 
125
#endif
120
126
 
121
127
 
122
128