From facf4c12d4cfba4a0d623ad38c6066fadc2ece39 Mon Sep 17 00:00:00 2001 From: James Turner Date: Sat, 29 Oct 2011 11:15:45 +0100 Subject: [PATCH] Make various protocols support multiple definitions, with the new options parsing code. --- src/Main/options.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Main/options.cxx b/src/Main/options.cxx index 06995a288..5071f4362 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -1467,10 +1467,10 @@ struct OptionDesc { {"AV400WSimA", true, OPTION_CHANNEL, "", false, "", 0 }, {"AV400WSimB", true, OPTION_CHANNEL, "", false, "", 0 }, {"garmin", true, OPTION_CHANNEL, "", false, "", 0 }, - {"nmea", true, OPTION_CHANNEL, "", false, "", 0 }, - {"generic", true, OPTION_CHANNEL, "", false, "", 0 }, - {"props", true, OPTION_CHANNEL, "", false, "", 0 }, - {"telnet", true, OPTION_CHANNEL, "", false, "", 0 }, + {"nmea", true, OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 }, + {"generic", true, OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 }, + {"props", true, OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 }, + {"telnet", true, OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 }, {"pve", true, OPTION_CHANNEL, "", false, "", 0 }, {"ray", true, OPTION_CHANNEL, "", false, "", 0 }, {"rul", true, OPTION_CHANNEL, "", false, "", 0 }, -- 2.39.5