diff options
author | Anders Svensson <[email protected]> | 2014-10-10 17:18:04 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2014-10-10 17:30:09 +0200 |
commit | e12f7043f05431c4278f1ed506e0f76b1c95152d (patch) | |
tree | 9311adeba84fbcfb2c85784e09df8a57a12430eb /lib/diameter | |
parent | 743ed31108ee555db18d9833186865e85e34333e (diff) | |
download | otp-e12f7043f05431c4278f1ed506e0f76b1c95152d.tar.gz otp-e12f7043f05431c4278f1ed506e0f76b1c95152d.tar.bz2 otp-e12f7043f05431c4278f1ed506e0f76b1c95152d.zip |
Fix handling of 3xxx Result-Code without E-bit
Commit 00584303 broke the population of the errors field of the
diameter_packet record when an incoming request with an
E-bit/Result-Code mismatch was decoded. Instead of the intended
{5004, #diameter_avp{value = integer()}},
the value was a 4-tuple containing the integer Result-Code.
Diffstat (limited to 'lib/diameter')
-rw-r--r-- | lib/diameter/src/base/diameter_traffic.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/diameter/src/base/diameter_traffic.erl b/lib/diameter/src/base/diameter_traffic.erl index 280d09d7e8..8becf7bd5f 100644 --- a/lib/diameter/src/base/diameter_traffic.erl +++ b/lib/diameter/src/base/diameter_traffic.erl @@ -1484,7 +1484,7 @@ handle_A(Pkt, SvcName, Dict, Dict0, App, #request{transport = TPid} = Req) -> %% a missing AVP. If both are optional in the dictionary %% then this isn't a decode error: just continue on. answer(Pkt, SvcName, App, Req); - exit: {invalid_error_bit, RC} -> + exit: {invalid_error_bit, {_, _, _, RC}} -> #diameter_packet{errors = Es} = Pkt, E = {5004, #diameter_avp{name = 'Result-Code', value = RC}}, |