mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-20 11:48:28 -06:00
Rename src/util/authhelper.[ch] to src/util/virauth.[ch]
To follow latest naming conventions, rename src/util/authhelper.[ch] to src/util/virauth.[ch]. * src/util/authhelper.[ch]: Rename to src/util/virauth.[ch] * src/esx/esx_driver.c, src/hyperv/hyperv_driver.c, src/phyp/phyp_driver.c, src/xenapi/xenapi_driver.c: Update for renamed include files Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
f6632f6b7f
commit
c8aa3862b1
@ -106,7 +106,6 @@ src/storage/storage_driver.c
|
||||
src/test/test_driver.c
|
||||
src/uml/uml_conf.c
|
||||
src/uml/uml_driver.c
|
||||
src/util/authhelper.c
|
||||
src/util/cgroup.c
|
||||
src/util/command.c
|
||||
src/util/conf.c
|
||||
@ -125,6 +124,7 @@ src/util/storage_file.c
|
||||
src/util/sysinfo.c
|
||||
src/util/util.c
|
||||
src/util/viraudit.c
|
||||
src/util/virauth.c
|
||||
src/util/virfile.c
|
||||
src/util/virhash.c
|
||||
src/util/virkeyfile.c
|
||||
|
@ -52,7 +52,6 @@ augeastest_DATA =
|
||||
# These files are not related to driver APIs. Simply generic
|
||||
# helper APIs for various purposes
|
||||
UTIL_SOURCES = \
|
||||
util/authhelper.c util/authhelper.h \
|
||||
util/bitmap.c util/bitmap.h \
|
||||
util/buf.c util/buf.h \
|
||||
util/command.c util/command.h \
|
||||
@ -81,6 +80,7 @@ UTIL_SOURCES = \
|
||||
util/uuid.c util/uuid.h \
|
||||
util/util.c util/util.h \
|
||||
util/viraudit.c util/viraudit.h \
|
||||
util/virauth.c util/virauth.h \
|
||||
util/virfile.c util/virfile.h \
|
||||
util/virnodesuspend.c util/virnodesuspend.h \
|
||||
util/virpidfile.c util/virpidfile.h \
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
#include "internal.h"
|
||||
#include "domain_conf.h"
|
||||
#include "authhelper.h"
|
||||
#include "virauth.h"
|
||||
#include "util.h"
|
||||
#include "memory.h"
|
||||
#include "logging.h"
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "internal.h"
|
||||
#include "datatypes.h"
|
||||
#include "domain_conf.h"
|
||||
#include "authhelper.h"
|
||||
#include "virauth.h"
|
||||
#include "util.h"
|
||||
#include "memory.h"
|
||||
#include "logging.h"
|
||||
|
@ -44,7 +44,7 @@
|
||||
#include <domain_event.h>
|
||||
|
||||
#include "internal.h"
|
||||
#include "authhelper.h"
|
||||
#include "virauth.h"
|
||||
#include "util.h"
|
||||
#include "datatypes.h"
|
||||
#include "buf.h"
|
||||
|
@ -1,6 +1,5 @@
|
||||
|
||||
/*
|
||||
* authhelper.c: authentication related utility functions
|
||||
* virauth.c: authentication related utility functions
|
||||
*
|
||||
* Copyright (C) 2010 Matthias Bolte <matthias.bolte@googlemail.com>
|
||||
*
|
||||
@ -22,7 +21,7 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "authhelper.h"
|
||||
#include "virauth.h"
|
||||
#include "util.h"
|
||||
#include "memory.h"
|
||||
|
@ -1,6 +1,5 @@
|
||||
|
||||
/*
|
||||
* authhelper.h: authentication related utility functions
|
||||
* virauth.h: authentication related utility functions
|
||||
*
|
||||
* Copyright (C) 2010 Matthias Bolte <matthias.bolte@googlemail.com>
|
||||
*
|
||||
@ -20,8 +19,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef __VIR_AUTHHELPER_H__
|
||||
# define __VIR_AUTHHELPER_H__
|
||||
#ifndef __VIR_AUTH_H__
|
||||
# define __VIR_AUTH_H__
|
||||
|
||||
# include "internal.h"
|
||||
|
||||
@ -30,4 +29,4 @@ char *virRequestUsername(virConnectAuthPtr auth, const char *defaultUsername,
|
||||
char *virRequestPassword(virConnectAuthPtr auth, const char *username,
|
||||
const char *hostname);
|
||||
|
||||
#endif /* __VIR_AUTHHELPER_H__ */
|
||||
#endif /* __VIR_AUTH_H__ */
|
@ -31,7 +31,7 @@
|
||||
#include "domain_conf.h"
|
||||
#include "virterror_internal.h"
|
||||
#include "datatypes.h"
|
||||
#include "authhelper.h"
|
||||
#include "virauth.h"
|
||||
#include "util.h"
|
||||
#include "uuid.h"
|
||||
#include "memory.h"
|
||||
|
Loading…
Reference in New Issue
Block a user