r7176 - dumbhippo/trunk/client/common/ddm
- From: commits mugshot org
- To: online-desktop-list gnome org
- Subject: r7176 - dumbhippo/trunk/client/common/ddm
- Date: Thu, 10 Jan 2008 11:40:40 -0600 (CST)
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]