diff options
| author | Serhii Kostiuk <serhii.o.kostiuk@globallogic.com> | 2023-01-06 17:52:09 +0200 |
|---|---|---|
| committer | Serhii Kostiuk <serhii.o.kostiuk@globallogic.com> | 2023-01-06 19:13:55 +0200 |
| commit | e8b95d56ac9e06c3dc55f2c6fc3b2e177f9b10b0 (patch) | |
| tree | 6b16f8af8a6aa3f177f9f243f182e9e1d06c9919 /src/pdu_encode.c | |
| parent | cd38e2b12d6f13dfd03eed207aa7f262e00099f1 (diff) | |
| download | sms-utils-e8b95d56ac9e06c3dc55f2c6fc3b2e177f9b10b0.tar.gz sms-utils-e8b95d56ac9e06c3dc55f2c6fc3b2e177f9b10b0.tar.bz2 sms-utils-e8b95d56ac9e06c3dc55f2c6fc3b2e177f9b10b0.zip | |
[GP-1842] Refactoring - Renamed Verizon 3GPP2 detection functions
Renamed the functions to better represent their behavior and purpose.
Diffstat (limited to 'src/pdu_encode.c')
| -rw-r--r-- | src/pdu_encode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pdu_encode.c b/src/pdu_encode.c index d859543..34028a9 100644 --- a/src/pdu_encode.c +++ b/src/pdu_encode.c @@ -88,7 +88,7 @@ int pdu_encode_addr(char *pdu_str, size_t len, struct pdu_addr *addr, int smsc) int addr_len; int tmp; - if (isCdmaTypeModel()) { + if (is_telit_3gpp2_format()) { //CDMA length is # of bytes including address type //Ex: Type: 80 #: 9132074666 --> 80 19 23 70 64 66 => 6 bytes addr_len = 1; //1 byte for address type |
