public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* Cluster Project branch, master, updated. cluster-2.99.04-39-g2a62bcc
@ 2008-06-20  5:45 fabbione
  0 siblings, 0 replies; only message in thread
From: fabbione @ 2008-06-20  5:45 UTC (permalink / raw)
  To: cluster-cvs, cluster-devel

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 <fdinitto@redhat.com>
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 <fdinitto@redhat.com>

-----------------------------------------------------------------------

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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-06-20  5:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-06-20  5:45 Cluster Project branch, master, updated. cluster-2.99.04-39-g2a62bcc fabbione

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).