summaryrefslogtreecommitdiffstats
path: root/codec/attributes
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-06-17 19:02:08 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-06-17 19:02:35 +0200
commitca7c90b83f859966a0e45a64487dfabe736cfa2b (patch)
treef8ad8971610a86bc898d9b9c19874aa2c6b9a7e2 /codec/attributes
parenteacd66d90ae3de694acb1026368c9b385cfa06b1 (diff)
codec: Refer to the right variable name
Too much tab completion for the other project I spend time with
Diffstat (limited to 'codec/attributes')
-rw-r--r--codec/attributes/SMPPSystemId.st6
1 files changed, 3 insertions, 3 deletions
diff --git a/codec/attributes/SMPPSystemId.st b/codec/attributes/SMPPSystemId.st
index 37921fb..aac190b 100644
--- a/codec/attributes/SMPPSystemId.st
+++ b/codec/attributes/SMPPSystemId.st
@@ -16,12 +16,12 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
"
-SMPPOctetString subclass: SMPPSystemdId [
+SMPPOctetString subclass: SMPPSystemId [
<comment: 'I re-present 5.2.1 of SMPPv3.4'>
- SMPPSystemdId class >> tlvDescription [
+ SMPPSystemId class >> tlvDescription [
^super tlvDescription
- instVarName: #systemd_id;
+ instVarName: #system_id;
minSize: 0 maxSize: 16;
yourself
]