aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/src/asn1ct_gen_per.erl
diff options
context:
space:
mode:
authorJohn Högberg <[email protected]>2017-07-27 09:14:18 +0200
committerJohn Högberg <[email protected]>2017-07-27 09:14:18 +0200
commitfdce942f2dbbf50c4987f4f0b15c99ceeae7f583 (patch)
tree522977edfcb4c251f40fd90280b19ef3ba326bd7 /lib/asn1/src/asn1ct_gen_per.erl
parent72d994d7a6251e6ec72cf864b11309e01c50ba1f (diff)
parent2f49a6bdc5bc9207162bff837b3f642cdd089722 (diff)
downloadotp-fdce942f2dbbf50c4987f4f0b15c99ceeae7f583.tar.gz
otp-fdce942f2dbbf50c4987f4f0b15c99ceeae7f583.tar.bz2
otp-fdce942f2dbbf50c4987f4f0b15c99ceeae7f583.zip
Merge branch 'maint'
* maint: Updated OTP version Update release notes Update version numbers Fix doc for the 'quiet' option; it defaults to false asn1: Fix missing quotes of external encoding call Add a dedicated close function for TCP ports to prevent issues like ERL-430/448 Close TCP ports properly on send timeout erts: Add missing release note
Diffstat (limited to 'lib/asn1/src/asn1ct_gen_per.erl')
-rw-r--r--lib/asn1/src/asn1ct_gen_per.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1/src/asn1ct_gen_per.erl b/lib/asn1/src/asn1ct_gen_per.erl
index 28b4e46b0c..82e9326294 100644
--- a/lib/asn1/src/asn1ct_gen_per.erl
+++ b/lib/asn1/src/asn1ct_gen_per.erl
@@ -101,7 +101,7 @@ gen_encode_user(Erules,D) when is_record(D,typedef) ->
#'Externaltypereference'{module=CurrMod,type=Etype} ->
emit([{asis,enc_func(Etype)},"(Val).",nl]);
#'Externaltypereference'{module=Emod,type=Etype} ->
- emit([{asis,Emod},":",enc_func(Etype),"(Val).",nl])
+ emit([{asis,Emod},":",{asis,enc_func(Etype)},"(Val).",nl])
end.