+Tue Oct 31 10:31:34 CET 2006 Daniel Veillard <veillard@redhat.com>
+
+ * src/xend_internal.c: when getting informations about a non
+ existant domain, it is not a good idea to raise the HTTP
+ 404 GET error, the handling is better done somewhere up in
+ the stack.
+
Tue Oct 24 15:31:23 EDT 2006 Daniel P.Berrange <berrange@redhat.com>
* python/generator.py, python/libvir.c: Drop python interpreter
http://libvirt.org/news.html
Releases
+0.1.8: Oct 16 2006:
+ - Bug for system with page size != 4k
+ - vcpu number initialization (Philippe Berthault)
+ - don't label crashed domains as shut off (Peter Vetere)
+ - fix virsh man page (Noriko Mizumoto)
+ - blktapdd support for alternate drivers like blktap (Daniel Berrange)
+ - memory leak fixes (xend interface and XML parsing) (Daniel Berrange)
+ - compile fix
+ - mlock/munlock size fixes (Daniel Berrange)
+ - improve error reporting
+
+
0.1.7: Sep 29 2006:
- fix a memory bug on getting vcpu informations from xend (Daniel Berrange)
- fix another problem in the hypercalls change in Xen changeset
language is requested. */
#undef ENABLE_NLS
+/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
+ CoreFoundation framework. */
+#undef HAVE_CFLOCALECOPYCURRENT
+
+/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
+ the CoreFoundation framework. */
+#undef HAVE_CFPREFERENCESCOPYAPPVALUE
+
/* Define if the GNU dcgettext() function is already present or preinstalled.
*/
#undef HAVE_DCGETTEXT
ret = xend_req(s, content, n_content);
close(s);
- if ((ret < 0) || (ret >= 300)) {
+ if (((ret < 0) || (ret >= 300)) &&
+ ((ret != 404) || (strncmp(path, "/xend/domain/", 13)))) {
virXendError(NULL, VIR_ERR_GET_FAILED, content);
}