Remove unused parameter from rfb::Configuration::Configuration()


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5062 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/common/rfb/Configuration.h b/common/rfb/Configuration.h
index 35e31fc..842adc9 100644
--- a/common/rfb/Configuration.h
+++ b/common/rfb/Configuration.h
@@ -57,7 +57,7 @@
   class Configuration {
   public:
     // - Create a new Configuration object
-    Configuration(const char* name, Configuration* attachToGroup=0);
+    Configuration(const char* name_) : name(strDup(name_)), head(0), _next(0) {}
 
     // - Return the buffer containing the Configuration's name
     const char* getName() const { return name.buf; }