From 4260fc73153bbb932fe8aa57afbf240c15a51c7a Mon Sep 17 00:00:00 2001 From: Peter Barfuss Date: Thu, 15 Jan 2015 15:58:34 -0500 Subject: [PATCH] And of course, call p25_process_frame() from dsd_frame.c so that literally the entirety of p25p1.c isn't dead code. :P --- dsd_frame.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dsd_frame.c b/dsd_frame.c index 2d63bbd..37f6e41 100644 --- a/dsd_frame.c +++ b/dsd_frame.c @@ -155,6 +155,7 @@ processFrame (dsd_opts * opts, dsd_state * state) } else { unsigned char duid = get_p25_nac_and_duid(opts, state); printf("p25 NAC: 0x%03x, DUID: 0x%x\n", state->nac, duid); + process_p25_frame (opts, state, duid); return; } }