cvs-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Cvs-cvs] Changes to ccvs/src/root.c


From: Derek Robert Price
Subject: [Cvs-cvs] Changes to ccvs/src/root.c
Date: Wed, 31 Aug 2005 12:51:12 -0400

Index: ccvs/src/root.c
diff -u ccvs/src/root.c:1.114 ccvs/src/root.c:1.115
--- ccvs/src/root.c:1.114       Thu May 26 17:48:06 2005
+++ ccvs/src/root.c     Wed Aug 31 16:51:02 2005
@@ -279,14 +279,14 @@
 
 
 void
-root_allow_add (const char *arg)
+root_allow_add (const char *arg, const char *configPath)
 {
     Node *n;
 
     if (!root_allow) root_allow = getlist();
     n = getnode();
     n->key = xstrdup (arg);
-    n->data = parse_config (arg);
+    n->data = parse_config (arg, configPath);
     n->delproc = delconfig;
     addnode (root_allow, n);
 }
@@ -329,7 +329,7 @@
  *   The config associated with ARG.
  */
 struct config *
-get_root_allow_config (const char *arg)
+get_root_allow_config (const char *arg, const char *configPath)
 {
     Node *n;
 
@@ -341,7 +341,7 @@
        n = NULL;
 
     if (n) return n->data;
-    return parse_config (arg);
+    return parse_config (arg, configPath);
 }
 
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]