core,data: Correct name of 'upnp_enabled' in user config
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Fri, 17 Dec 2010 15:52:12 +0000 (17:52 +0200)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Tue, 11 Jan 2011 17:18:49 +0000 (19:18 +0200)
data/rygel-default.conf
data/rygel-maemo.conf
src/rygel/rygel-user-config.vala

index 530e650..f82299e 100644 (file)
@@ -8,7 +8,7 @@
 # Set it to 'false' if you want to only use the streaming part of Rygel and/or
 # don't want it to advertize itself on the UPnP network. If you want to
 # completely disable rygel, just don't run it then. :)
-enabled=true
+upnp_enabled=true
 
 # Set it to 'false' if you want to disable transcoding support.
 enable-transcoding=true
index 3dd4332..b4311f5 100644 (file)
@@ -8,7 +8,7 @@
 # Set it to 'false' if you want to only use the streaming part of Rygel and/or
 # don't want it to advertize itself on the UPnP network. If you want to
 # completely disable rygel, just don't run it then. :)
-enabled=true
+upnp_enabled=true
 
 # Set it to 'false' if you want to disable transcoding support.
 enable-transcoding=true
index fb8f0a3..2e30042 100644 (file)
@@ -31,7 +31,7 @@ public class Rygel.UserConfig : GLib.Object, Configuration {
     public static const string CONFIG_FILE = "rygel.conf";
     public static const string IFACE_KEY = "interface";
     public static const string PORT_KEY = "port";
-    public static const string ENABLED_KEY = "enabled";
+    public static const string ENABLED_KEY = "upnp_enabled";
     public static const string TITLE_KEY = "title";
     public static const string TRANSCODING_KEY = "enable-transcoding";
     public static const string MP3_TRANSCODER_KEY = "enable-mp3-transcoder";