diff options
author | Josh Blum | 2009-09-28 12:14:32 -0700 |
---|---|---|
committer | Josh Blum | 2009-09-28 12:14:32 -0700 |
commit | 1c528febdac158b3fe898a8cb37ac37f8f4fee61 (patch) | |
tree | b4e749f6b3135d12da3fe0d6b9c9af54dcad5e00 | |
parent | e3902a9557e2a8c8bdd1e86fab30d754e909f843 (diff) | |
download | gnuradio-1c528febdac158b3fe898a8cb37ac37f8f4fee61.tar.gz gnuradio-1c528febdac158b3fe898a8cb37ac37f8f4fee61.tar.bz2 gnuradio-1c528febdac158b3fe898a8cb37ac37f8f4fee61.zip |
use existing utility method
-rw-r--r-- | vrt/lib/expanded_header.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vrt/lib/expanded_header.cc b/vrt/lib/expanded_header.cc index d7da06af4..0eb2042d8 100644 --- a/vrt/lib/expanded_header.cc +++ b/vrt/lib/expanded_header.cc @@ -113,7 +113,7 @@ namespace vrt { } /* is this a if context packet? */ - if (ntohl(p[0]) & VRTH_PT_IF_CONTEXT){ + if (h->if_context_p()){ *payload = p; *n32_bit_words_payload = n32_bit_words_packet; } |