diff options
author | Jesse Gilles <jgilles@multitech.com> | 2014-08-18 12:24:16 -0500 |
---|---|---|
committer | Jesse Gilles <jgilles@multitech.com> | 2014-08-18 12:24:16 -0500 |
commit | 2727a60fb3f559b8caeb7dad8a00b16e20dc36db (patch) | |
tree | 7117504a77f5b7b110e1150a949fea3982b1d410 | |
parent | 12361965344182732888cb936b3147bb4a2cdace (diff) | |
download | sms-utils-2727a60fb3f559b8caeb7dad8a00b16e20dc36db.tar.gz sms-utils-2727a60fb3f559b8caeb7dad8a00b16e20dc36db.tar.bz2 sms-utils-2727a60fb3f559b8caeb7dad8a00b16e20dc36db.zip |
Revert "pdu.h: remove duplicate struct members in type"
This reverts commit 12361965344182732888cb936b3147bb4a2cdace.
Jesse had no idea what he was doing :)
-rw-r--r-- | src/pdu.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -64,8 +64,14 @@ struct pdu_info { uint8_t status_report: 1; uint8_t user_data_header: 1; uint8_t reply_path: 1; + }; + struct { + uint8_t msg_type: 2; uint8_t reject_duplicates: 1; uint8_t validity_period_format: 2; + uint8_t status_report: 1; + uint8_t user_data_header: 1; + uint8_t reply_path: 1; }; } type; uint8_t msg_reference; |