aboutsummaryrefslogtreecommitdiffstats
path: root/prefs.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-04-21 21:28:39 +0000
committerGuy Harris <guy@alum.mit.edu>2003-04-21 21:28:39 +0000
commitbbb746f9b1effb4008763307e51a92160aef8da1 (patch)
treec5af9f5a59aa14cf12026e7f17ebb35bba11c221 /prefs.c
parentee1bc75c1b8b3825f871579eb7faa8289cb3b477 (diff)
From Erwin Rol: ArtNET support.
svn path=/trunk/; revision=7518
Diffstat (limited to 'prefs.c')
-rw-r--r--prefs.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/prefs.c b/prefs.c
index 04ed71c809..9b26b784dc 100644
--- a/prefs.c
+++ b/prefs.c
@@ -1,7 +1,7 @@
/* prefs.c
* Routines for handling preferences
*
- * $Id: prefs.c,v 1.99 2003/04/09 08:43:53 guy Exp $
+ * $Id: prefs.c,v 1.100 2003/04/21 21:28:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1657,6 +1657,10 @@ set_pref(gchar *pref_name, gchar *value)
/* Handle old names for PCLI preferences. */
if (strcmp(dotp, "pcli.udp_port") == 0)
pref = find_preference(module, "udp_port");
+ } else if (strcmp(module->name, "artnet") == 0) {
+ /* Handle old names for ARTNET preferences. */
+ if (strcmp(dotp, "artnet.udp_port") == 0)
+ pref = find_preference(module, "udp_port");
} else if (strcmp(module->name, "mapi") == 0) {
/* Handle old names for MAPI preferences. */
if (strcmp(dotp, "mapi_decrypt") == 0)