From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18313 invoked by alias); 20 Jun 2008 05:45:31 -0000 Received: (qmail 18281 invoked by uid 9702); 20 Jun 2008 05:45:31 -0000 Date: Fri, 20 Jun 2008 05:45:00 -0000 Message-ID: <20080620054530.18266.qmail@sourceware.org> From: fabbione@sourceware.org To: cluster-cvs@sources.redhat.com, cluster-devel@redhat.com Subject: Cluster Project branch, master, updated. cluster-2.99.04-39-g2a62bcc X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: cb690444146f443739976b8795407545666addb1 X-Git-Newrev: 2a62bccc8a9ec72bcb6cb6c75583eb55d2af9433 Mailing-List: contact cluster-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: cluster-cvs-owner@sourceware.org X-SW-Source: 2008-q2/txt/msg00512.txt.bz2 This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Cluster Project". http://sources.redhat.com/git/gitweb.cgi?p=cluster.git;a=commitdiff;h=2a62bccc8a9ec72bcb6cb6c75583eb55d2af9433 The branch, master has been updated via 2a62bccc8a9ec72bcb6cb6c75583eb55d2af9433 (commit) from cb690444146f443739976b8795407545666addb1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2a62bccc8a9ec72bcb6cb6c75583eb55d2af9433 Author: Fabio M. Di Nitto Date: Fri Jun 20 07:44:58 2008 +0200 [CCS] Add cosmetic CCSENTER/EXIT for simple xml queries Signed-off-by: Fabio M. Di Nitto ----------------------------------------------------------------------- Summary of changes: ccs/daemon/misc.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ccs/daemon/misc.c b/ccs/daemon/misc.c index 167536f..13f5780 100644 --- a/ccs/daemon/misc.c +++ b/ccs/daemon/misc.c @@ -43,6 +43,8 @@ static char *do_simple_xml_query(xmlXPathContextPtr ctx, char *query) { xmlXPathObjectPtr obj = NULL; xmlNodePtr node = NULL; + CCSENTER("do_simple_xml_query"); + obj = xmlXPathEvalExpression((xmlChar *)query, ctx); if(!obj || !obj->nodesetval || (obj->nodesetval->nodeNr != 1)) log_printf(LOG_DEBUG, "Error processing query: %s.\n", query); @@ -53,14 +55,17 @@ static char *do_simple_xml_query(xmlXPathContextPtr ctx, char *query) { else { if(!node->children->content || !strlen((char *)node->children->content)) log_printf(LOG_DEBUG, "No content found.\n"); - else + else { + CCSEXIT("do_simple_xml_query"); return strdup((char *)node->children->content); + } } } if(obj) xmlXPathFreeObject(obj); + CCSEXIT("do_simple_xml_query"); return NULL; } hooks/post-receive -- Cluster Project