summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2014-08-16 01:33:46 +0200
committerThomas Haller <thaller@redhat.com>2014-09-29 13:00:11 +0200
commit05494423de63892114653a05272b31b6dccbda53 (patch)
tree7b6bd3a6eafbf886d8512280dafd7e00224d0a38
parent624e7deb47faaf34d356cf4249ad09094442fc60 (diff)
downloadNetworkManager-05494423de63892114653a05272b31b6dccbda53.tar.gz
auth: rename file nm-manager-auth.* to nm-auth-utils.*
Signed-off-by: Thomas Haller <thaller@redhat.com>
-rw-r--r--src/Makefile.am4
-rw-r--r--src/NetworkManagerUtils.c2
-rw-r--r--src/devices/nm-device.c2
-rw-r--r--src/devices/wifi/nm-device-wifi.c2
-rw-r--r--src/nm-active-connection.c2
-rw-r--r--src/nm-auth-utils.c (renamed from src/nm-manager-auth.c)2
-rw-r--r--src/nm-auth-utils.h (renamed from src/nm-manager-auth.h)0
-rw-r--r--src/nm-manager.c2
-rw-r--r--src/nm-policy.c2
-rw-r--r--src/settings/nm-agent-manager.c4
-rw-r--r--src/settings/nm-settings-connection.c2
-rw-r--r--src/settings/nm-settings.c2
12 files changed, 13 insertions, 13 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 62a4aa55ef..c72c85fefc 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -230,10 +230,10 @@ nm_sources = \
nm-ip6-config.h \
nm-logging.c \
nm-logging.h \
- nm-manager-auth.c \
- nm-manager-auth.h \
nm-auth-subject.c \
nm-auth-subject.h \
+ nm-auth-utils.c \
+ nm-auth-utils.h \
nm-manager.c \
nm-manager.h \
nm-policy.c \
diff --git a/src/NetworkManagerUtils.c b/src/NetworkManagerUtils.c
index 63648e3322..0096313a44 100644
--- a/src/NetworkManagerUtils.c
+++ b/src/NetworkManagerUtils.c
@@ -44,7 +44,7 @@
#include "nm-setting-ip6-config.h"
#include "nm-setting-wireless.h"
#include "nm-setting-wireless-security.h"
-#include "nm-manager-auth.h"
+#include "nm-auth-utils.h"
#include "nm-posix-signals.h"
#include "nm-dbus-glib-types.h"
diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c
index 4a5eb186c4..75b07d2f03 100644
--- a/src/devices/nm-device.c
+++ b/src/devices/nm-device.c
@@ -66,7 +66,7 @@
#include "nm-settings-connection.h"
#include "nm-connection-provider.h"
#include "nm-posix-signals.h"
-#include "nm-manager-auth.h"
+#include "nm-auth-utils.h"
#include "nm-dbus-glib-types.h"
#include "nm-dispatcher.h"
#include "nm-config.h"
diff --git a/src/devices/wifi/nm-device-wifi.c b/src/devices/wifi/nm-device-wifi.c
index 41a75da1a1..8508097886 100644
--- a/src/devices/wifi/nm-device-wifi.c
+++ b/src/devices/wifi/nm-device-wifi.c
@@ -53,7 +53,7 @@
#include "nm-ip4-config.h"
#include "nm-setting-ip6-config.h"
#include "nm-platform.h"
-#include "nm-manager-auth.h"
+#include "nm-auth-utils.h"
#include "nm-settings-connection.h"
#include "nm-enum-types.h"
#include "nm-dbus-glib-types.h"
diff --git a/src/nm-active-connection.c b/src/nm-active-connection.c
index 130b5229b0..888bbd1797 100644
--- a/src/nm-active-connection.c
+++ b/src/nm-active-connection.c
@@ -27,7 +27,7 @@
#include "nm-dbus-manager.h"
#include "nm-device.h"
#include "nm-settings-connection.h"
-#include "nm-manager-auth.h"
+#include "nm-auth-utils.h"
#include "nm-auth-subject.h"
#include "NetworkManagerUtils.h"
diff --git a/src/nm-manager-auth.c b/src/nm-auth-utils.c
index 80a0b87fba..b2d7cb3cbd 100644
--- a/src/nm-manager-auth.c
+++ b/src/nm-auth-utils.c
@@ -27,7 +27,7 @@
#endif
#include "nm-setting-connection.h"
-#include "nm-manager-auth.h"
+#include "nm-auth-utils.h"
#include "nm-logging.h"
#include "nm-dbus-manager.h"
#include "nm-auth-subject.h"
diff --git a/src/nm-manager-auth.h b/src/nm-auth-utils.h
index 25f3cd591e..25f3cd591e 100644
--- a/src/nm-manager-auth.h
+++ b/src/nm-auth-utils.h
diff --git a/src/nm-manager.c b/src/nm-manager.c
index eb20ada399..8f5d41f813 100644
--- a/src/nm-manager.c
+++ b/src/nm-manager.c
@@ -49,7 +49,7 @@
#include "nm-dhcp-manager.h"
#include "nm-settings.h"
#include "nm-settings-connection.h"
-#include "nm-manager-auth.h"
+#include "nm-auth-utils.h"
#include "NetworkManagerUtils.h"
#include "nm-utils.h"
#include "nm-device-factory.h"
diff --git a/src/nm-policy.c b/src/nm-policy.c
index a0cf71e5a9..f6ef476bf9 100644
--- a/src/nm-policy.c
+++ b/src/nm-policy.c
@@ -38,7 +38,7 @@
#include "nm-platform.h"
#include "nm-dns-manager.h"
#include "nm-vpn-manager.h"
-#include "nm-manager-auth.h"
+#include "nm-auth-utils.h"
#include "nm-firewall-manager.h"
#include "nm-dispatcher.h"
#include "nm-utils.h"
diff --git a/src/settings/nm-agent-manager.c b/src/settings/nm-agent-manager.c
index 333cbb261e..26692c339f 100644
--- a/src/settings/nm-agent-manager.c
+++ b/src/settings/nm-agent-manager.c
@@ -30,9 +30,9 @@
#include "nm-logging.h"
#include "nm-agent-manager.h"
#include "nm-secret-agent.h"
-#include "nm-manager-auth.h"
+#include "nm-auth-utils.h"
#include "nm-dbus-glib-types.h"
-#include "nm-manager-auth.h"
+#include "nm-auth-utils.h"
#include "nm-setting-vpn.h"
#include "nm-setting-connection.h"
#include "nm-enum-types.h"
diff --git a/src/settings/nm-settings-connection.c b/src/settings/nm-settings-connection.c
index 6b0d38c738..9cf90a5bc9 100644
--- a/src/settings/nm-settings-connection.c
+++ b/src/settings/nm-settings-connection.c
@@ -36,7 +36,7 @@
#include "nm-settings-error.h"
#include "nm-dbus-glib-types.h"
#include "nm-logging.h"
-#include "nm-manager-auth.h"
+#include "nm-auth-utils.h"
#include "nm-auth-subject.h"
#include "nm-agent-manager.h"
#include "NetworkManagerUtils.h"
diff --git a/src/settings/nm-settings.c b/src/settings/nm-settings.c
index a4339ed492..7876a69bf6 100644
--- a/src/settings/nm-settings.c
+++ b/src/settings/nm-settings.c
@@ -62,7 +62,7 @@
#include "nm-system-config-interface.h"
#include "nm-logging.h"
#include "nm-dbus-manager.h"
-#include "nm-manager-auth.h"
+#include "nm-auth-utils.h"
#include "nm-auth-subject.h"
#include "nm-session-monitor.h"
#include "plugins/keyfile/plugin.h"