fixeria submitted this change.
server_cb: comment out unused fields in handle_request/3
This fixes the following warnings:
* Warning: variable 'RatType' is unused
* Warning: variable 'UlrFlags' is unused
Change-Id: I3b709cfc723418c1ec88d15bc25bb2cef462a4d3
---
M src/server_cb.erl
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/server_cb.erl b/src/server_cb.erl
index 815eaf6..f51bb5c 100644
--- a/src/server_cb.erl
+++ b/src/server_cb.erl
@@ -287,8 +287,8 @@
% extract relevant fields from DIAMETER ULR
#diameter_caps{origin_host = {OH,_}, origin_realm = {OR,_}} = Caps,
#'ULR'{'Session-Id' = SessionId,
- 'RAT-Type' = RatType,
- 'ULR-Flags' = UlrFlags,
+%% XXX 'RAT-Type' = RatType,
+%% XXX 'ULR-Flags' = UlrFlags,
'User-Name' = UserName} = Req,
% construct GSUP UpdateLocation request to HLR and transceive it; expect InsertSubscrDataReq
To view, visit change 40145. To unsubscribe, or for help writing mail filters, visit settings.