r7176 - dumbhippo/trunk/client/common/ddm



Author: otaylor
Date: 2008-01-10 11:40:39 -0600 (Thu, 10 Jan 2008)
New Revision: 7176

Modified:
   dumbhippo/trunk/client/common/ddm/ddm-data-fetch.c
Log:
Skip '*' when parsing fetch strings

Modified: dumbhippo/trunk/client/common/ddm/ddm-data-fetch.c
===================================================================
--- dumbhippo/trunk/client/common/ddm/ddm-data-fetch.c	2008-01-10 17:40:01 UTC (rev 7175)
+++ dumbhippo/trunk/client/common/ddm/ddm-data-fetch.c	2008-01-10 17:40:39 UTC (rev 7176)
@@ -342,6 +342,9 @@
         if (*p == '+') {
             include_default = TRUE;
             p++;
+        } else if (*p == '*') {
+            /* Means 'all properties' in certain contexts, just ignore for now */
+            p++;
         } else {
             if (!fetch_property_from_string(str, &p, &property))
                 goto error;



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