diff options
author | Eric Blake <eblake@redhat.com> | 2011-07-19 12:32:58 -0600 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2011-07-21 10:34:51 -0600 |
commit | 8e22e08935655e5b39873bc8e1aa41d2ef2f8487 (patch) | |
tree | 842771f0ff7afff72077720ada521d40e63c8f08 /src/secret | |
parent | command: avoid leaking fds across fork (diff) | |
download | libvirt-8e22e08935655e5b39873bc8e1aa41d2ef2f8487.tar.gz libvirt-8e22e08935655e5b39873bc8e1aa41d2ef2f8487.tar.bz2 libvirt-8e22e08935655e5b39873bc8e1aa41d2ef2f8487.zip |
build: rename files.h to virfile.h
In preparation for a future patch adding new virFile APIs.
* src/util/files.h, src/util/files.c: Move...
* src/util/virfile.h, src/util/virfile.c: ...here, and rename
functions to virFile prefix. Macro names are intentionally
left alone.
* *.c: All '#include "files.h"' uses changed.
* src/Makefile.am (UTIL_SOURCES): Reflect rename.
* cfg.mk (exclude_file_name_regexp--sc_prohibit_close): Likewise.
* src/libvirt_private.syms: Likewise.
* docs/hacking.html.in: Likewise.
* HACKING: Regenerate.
Diffstat (limited to 'src/secret')
-rw-r--r-- | src/secret/secret_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/secret/secret_driver.c b/src/secret/secret_driver.c index 02cdbb912..59dc687d2 100644 --- a/src/secret/secret_driver.c +++ b/src/secret/secret_driver.c @@ -40,7 +40,7 @@ #include "util.h" #include "uuid.h" #include "virterror_internal.h" -#include "files.h" +#include "virfile.h" #include "configmake.h" #define VIR_FROM_THIS VIR_FROM_SECRET |