Skip to content

Commit

Permalink
Merge pull request #659 from tadscottsmith/fix-op25-errors
Browse files Browse the repository at this point in the history
Fix op25 errors
  • Loading branch information
robotastic authored Apr 2, 2022
2 parents d616a86 + f5b3222 commit dc4d7b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion trunk-recorder/recorders/dmr_recorder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ void dmr_recorder::initialize(Source *src) {

int udp_port = 0;
int verbosity = 0; // 10 = lots of debug messages
const char *udp_host = "";
const char *udp_host = "127.0.0.1";
bool do_imbe = 1;
bool do_output = 1;
bool do_msgq = 0;
Expand Down
2 changes: 1 addition & 1 deletion trunk-recorder/recorders/p25_recorder_decode.cc
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ void p25_recorder_decode::initialize( int silence_frames) {

int udp_port = 0;
int verbosity = 0; // 10 = lots of debug messages
const char *udp_host = "";
const char *udp_host = "127.0.0.1";
bool do_imbe = 1;
bool do_output = 1;
bool do_msgq = 0;
Expand Down

0 comments on commit dc4d7b5

Please sign in to comment.