diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/DabMux.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DabMux.cpp b/src/DabMux.cpp index e726fd3..578fc63 100644 --- a/src/DabMux.cpp +++ b/src/DabMux.cpp @@ -292,7 +292,7 @@ int main(int argc, char *argv[])              if (outputuid == "edi") {                  ptree pt_edi = pt_outputs.get_child("edi");                  for (auto pt_edi_dest : pt_edi.get_child("destinations")) { -                    const auto proto = pt_edi_dest.second.get<string>("protocol"); +                    const auto proto = pt_edi_dest.second.get<string>("protocol", "udp");                      if (proto == "udp") {                          auto dest = make_shared<edi::udp_destination_t>();                          dest->dest_addr   = pt_edi_dest.second.get<string>("destination");  | 
