Diameter_Templates.ttcn: Avoid sending AuthAppId Relay in CEA

We don't really act as rely agents in the emulation, so let's not
announce it.

Furthermore, this aids libfreediameter selecting proper routes, since it
seems to only underscore peers not matching the AppId if they are not
rely agents (see dont_send_if_no_common_app() in freeDiameter.git)

Change-Id: I0a9daf094f4c27c0b4de5581ddd56feced8e5732
diff --git a/library/DIAMETER_Templates.ttcn b/library/DIAMETER_Templates.ttcn
index 944dfd7..f7244d8 100644
--- a/library/DIAMETER_Templates.ttcn
+++ b/library/DIAMETER_Templates.ttcn
@@ -880,7 +880,6 @@
 		ts_AVP_SuppVendorIdRaw(5535), /* 3GPP2 */
 		ts_AVP_SuppVendorId(vendor_id_3GPP),
 		ts_AVP_SuppVendorIdRaw(13019), /* ETSI */
-		ts_AVP_AuthAppId('FFFFFFFF'O),
 		ts_AVP_AuthAppId(int2oct(auth_app_id, 4)),
 		ts_AVP_InbSecId('00000000'O)
 	});
@@ -901,7 +900,6 @@
 		ts_AVP_SuppVendorIdRaw(5535), /* 3GPP2 */
 		ts_AVP_SuppVendorId(vendor_id_3GPP),
 		ts_AVP_SuppVendorIdRaw(13019), /* ETSI */
-		ts_AVP_AuthAppId('FFFFFFFF'O),
 		ts_AVP_InbSecId('00000000'O),
 		ts_AVP_VendorSpecAppId(vendor_id_3GPP, vendor_app_id)
 	});