diff --git a/daemon/Makefile.am b/daemon/Makefile.am index 89c94b3306..335fa85912 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -2,7 +2,7 @@ DAEMON_SOURCES = \ event.c event.h \ - qemud.c qemud.h \ + libvirtd.c libvirtd.h \ remote.c remote.h \ dispatch.c dispatch.h \ remote_dispatch_prototypes.h \ diff --git a/daemon/dispatch.h b/daemon/dispatch.h index 1d85df9a6b..30de65887b 100644 --- a/daemon/dispatch.h +++ b/daemon/dispatch.h @@ -25,7 +25,7 @@ #define __LIBVIRTD_DISPATCH_H__ -#include "qemud.h" +#include "libvirtd.h" int diff --git a/daemon/qemud.c b/daemon/libvirtd.c similarity index 99% rename from daemon/qemud.c rename to daemon/libvirtd.c index 7cd190f368..7a25648350 100644 --- a/daemon/qemud.c +++ b/daemon/libvirtd.c @@ -1,5 +1,5 @@ /* - * qemud.c: daemon start of day, guest process & i/o management + * libvirtd.c: daemon start of day, guest process & i/o management * * Copyright (C) 2006, 2007, 2008, 2009 Red Hat, Inc. * Copyright (C) 2006 Daniel P. Berrange @@ -53,7 +53,7 @@ #define VIR_FROM_THIS VIR_FROM_QEMU -#include "qemud.h" +#include "libvirtd.h" #include "dispatch.h" #include "util.h" diff --git a/daemon/qemud.h b/daemon/libvirtd.h similarity index 99% rename from daemon/qemud.h rename to daemon/libvirtd.h index e8ce20988e..241c637b4b 100644 --- a/daemon/qemud.h +++ b/daemon/libvirtd.h @@ -1,5 +1,5 @@ /* - * qemud.h: daemon data structure definitions + * libvirtd.h: daemon data structure definitions * * Copyright (C) 2006-2009 Red Hat, Inc. * Copyright (C) 2006 Daniel P. Berrange diff --git a/daemon/mdns.c b/daemon/mdns.c index e1471af59c..ae8dc40fdb 100644 --- a/daemon/mdns.c +++ b/daemon/mdns.c @@ -37,8 +37,7 @@ #include #include -#include "internal.h" -#include "qemud.h" +#include "libvirtd.h" #include "mdns.h" #include "event.h" #include "memory.h" diff --git a/daemon/remote.h b/daemon/remote.h index e3ee6964cc..5df601bb9b 100644 --- a/daemon/remote.h +++ b/daemon/remote.h @@ -25,7 +25,7 @@ #define __LIBVIRTD_REMOTE_H__ -#include "qemud.h" +#include "libvirtd.h" typedef union { #include "remote_dispatch_args.h"