fixeria has submitted this change. (
https://gerrit.osmocom.org/c/osmo-msc/+/37238?usp=email )
Change subject: smpp: fix password[] length in struct esme
......................................................................
smpp: fix password[] length in struct esme
Change-Id: I07e7193460580a3c972a24700e75c925d1e50411
---
M include/osmocom/smpp/smpp.h
1 file changed, 10 insertions(+), 1 deletion(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, approved
neels: Looks good to me, but someone else must approve
diff --git a/include/osmocom/smpp/smpp.h b/include/osmocom/smpp/smpp.h
index d48cd79..0d34345 100644
--- a/include/osmocom/smpp/smpp.h
+++ b/include/osmocom/smpp/smpp.h
@@ -23,7 +23,7 @@
uint8_t smpp_version;
char system_id[SMPP_SYS_ID_LEN + 1];
- char password[SMPP_SYS_ID_LEN + 1];
+ char password[SMPP_PASSWD_LEN + 1];
};
#define LOGPESME(ESME, LEVEL, FMT, ARGS...) \
--
To view, visit
https://gerrit.osmocom.org/c/osmo-msc/+/37238?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Change-Id: I07e7193460580a3c972a24700e75c925d1e50411
Gerrit-Change-Number: 37238
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged