aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-acse.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-09-05 22:36:52 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-09-05 22:36:52 +0000
commita26eb043c0d502dce660a3ead45344ba619f9712 (patch)
treeed122df13ee425c5b91fce2ee1897c3326c7382b /epan/dissectors/packet-acse.c
parent000b9b0660f6b314bcb962821aed05ee5a0ac230 (diff)
Squelch a compiler warning.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15695 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-acse.c')
-rw-r--r--epan/dissectors/packet-acse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-acse.c b/epan/dissectors/packet-acse.c
index a259bcd3ff..118f816f9a 100644
--- a/epan/dissectors/packet-acse.c
+++ b/epan/dissectors/packet-acse.c
@@ -1,6 +1,6 @@
/* Do not modify this file. */
/* It is created automatically by the ASN.1 to Ethereal dissector compiler */
-/* .\packet-acse.c */
+/* ./packet-acse.c */
/* ../../tools/asn2eth.py -X -b -e -p acse -c acse.cnf -s packet-acse-template acse.asn */
/* Input file: packet-acse-template.c */
@@ -325,7 +325,7 @@ dissect_acse_T_indirect_reference(gboolean implicit_tag _U_, tvbuff_t *tvb, int
&indir_ref);
/* look up the indirect reference */
- if(oid = find_oid_by_pres_ctx_id(pinfo, indir_ref)) {
+ if((oid = find_oid_by_pres_ctx_id(pinfo, indir_ref)) != NULL) {
strcpy(object_identifier_id, oid);
}