From 177cf2edee7663ae3e706092f02a75f05a855015 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Fri, 29 Sep 2006 12:00:58 +0000 Subject: [PATCH] * docs/bugs.html docs/libvir.html: added pointers on how to report bugs in bugzilla as suggested by markmc * src/xend_internal.c: first step for #208545 raise an error at the libvirt level Daniel --- ChangeLog | 7 +++++++ docs/bugs.html | 8 +++++--- docs/libvir.html | 8 +++++--- src/xend_internal.c | 1 + 4 files changed, 18 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 035035dc8c..6293f9ffe4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Fri Sep 29 13:05:12 CEST 2006 Daniel Veillard + + * docs/bugs.html docs/libvir.html: added pointers on how to report + bugs in bugzilla as suggested by markmc + * src/xend_internal.c: first step for #208545 raise an error at the + libvirt level + Fri Sep 29 11:27:36 CEST 2006 Daniel Veillard * docs/* libvirt.spec.in configure.in NEWS: preparing release of 0.1.7 diff --git a/docs/bugs.html b/docs/bugs.html index 8e7ba942ec..35247bef85 100644 --- a/docs/bugs.html +++ b/docs/bugs.html @@ -5,6 +5,8 @@ with an on-line archive. Please subscribe to this list before posting by visiting the associated Web page and follow the instructions. Patches with explanations and provided as attachments are really appreciated and will be discussed on the mailing list. -If possible generate the patches by using cvs diff -u in a CVS checkout.

We expect to use Red Hat -Bugzilla to track bugs for libvirt, though there isn't a libvirt software -module defined yet, in the meantime use the mailing-list, thanks !.

+If possible generate the patches by using cvs diff -u in a CVS checkout.

We use Red Hat Bugzilla to track bugs to libvirt. If you want to report a +bug, please the existing open bugs, then if yours isn't a duplicate of +and existing bug, log a new bug. It may be good +to post to the mailing-list +if the issue looks serious, thanks !

diff --git a/docs/libvir.html b/docs/libvir.html index 8a013f0d09..eb2e93264f 100644 --- a/docs/libvir.html +++ b/docs/libvir.html @@ -878,8 +878,10 @@ page and follow the instructions. Patches with explanations and provided as attachments are really appreciated and will be discussed on the mailing list. If possible generate the patches by using cvs diff -u in a CVS checkout.

-

We expect to use Red Hat -Bugzilla to track bugs for libvirt, though there isn't a libvirt software -module defined yet, in the meantime use the mailing-list, thanks !.

+

We use Red Hat Bugzilla to track bugs to libvirt. If you want to report a +bug, please the existing open bugs, then if yours isn't a duplicate of +and existing bug, log a new bug. It may be good +to post to the mailing-list +if the issue looks serious, thanks !

diff --git a/src/xend_internal.c b/src/xend_internal.c index 672f7e0c22..0bd4e2b150 100644 --- a/src/xend_internal.c +++ b/src/xend_internal.c @@ -2820,6 +2820,7 @@ xenDaemonCreateLinux(virConnectPtr conn, const char *xmlDesc, sexpr = virDomainParseXMLDesc(xmlDesc, &name, xendConfigVersion); if ((sexpr == NULL) || (name == NULL)) { + virXendError(conn, VIR_ERR_XML_ERROR, "Failed to parse the XML domain description"); if (sexpr != NULL) free(sexpr); if (name != NULL) -- GitLab