mirror of https://gitee.com/openkylin/libvirt.git
Misc daemon fixes (John Levon)
This commit is contained in:
parent
b7e008d3dd
commit
13d98d68fc
|
@ -1,3 +1,9 @@
|
|||
Thu Dec 18 11:50:58 GMT 2008 Daniel P. Berrange <berrange@redhat.com>
|
||||
|
||||
Misc daemon bug fixes (John Levon)
|
||||
* qemud/qemud.c: Fix conditional for node devices
|
||||
* qemud/remote.c: Remove unneccessary path.h include
|
||||
|
||||
Thu Dec 18 07:47:58 +0100 2008 Jim Meyering <meyering@redhat.com>
|
||||
|
||||
docs/virsh.pod: typo fix
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#include <paths.h>
|
||||
#include <limits.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/un.h>
|
||||
|
@ -801,7 +800,8 @@ static struct qemud_server *qemudInitialize(int sigread) {
|
|||
#ifdef WITH_STORAGE_DIR
|
||||
storageRegister();
|
||||
#endif
|
||||
#if defined(HAVE_HAL) || defined(HAVE_DEVKIT)
|
||||
#if defined(WITH_NODE_DEVICES) && \
|
||||
(defined(HAVE_HAL) || defined(HAVE_DEVKIT))
|
||||
nodedevRegister();
|
||||
#endif
|
||||
#ifdef WITH_QEMU
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#include <paths.h>
|
||||
#include <limits.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/un.h>
|
||||
|
|
Loading…
Reference in New Issue