From 3f3560c28613b5db3ca558b97a23e02eac16def0 Mon Sep 17 00:00:00 2001 From: Victor Seva Date: Thu, 5 Jan 2017 12:53:22 +0100 Subject: [PATCH] auth_ephemeral: Rename module interface file #82 --- .../auth_ephemeral/{autheph_mod.c => auth_ephemeral_mod.c} | 2 +- .../auth_ephemeral/{autheph_mod.h => auth_ephemeral_mod.h} | 0 src/modules/auth_ephemeral/authorize.c | 2 +- src/modules/auth_ephemeral/checks.c | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename src/modules/auth_ephemeral/{autheph_mod.c => auth_ephemeral_mod.c} (99%) rename src/modules/auth_ephemeral/{autheph_mod.h => auth_ephemeral_mod.h} (100%) diff --git a/src/modules/auth_ephemeral/autheph_mod.c b/src/modules/auth_ephemeral/auth_ephemeral_mod.c similarity index 99% rename from src/modules/auth_ephemeral/autheph_mod.c rename to src/modules/auth_ephemeral/auth_ephemeral_mod.c index 4f239109fb6..6d60ce0966d 100644 --- a/src/modules/auth_ephemeral/autheph_mod.c +++ b/src/modules/auth_ephemeral/auth_ephemeral_mod.c @@ -32,7 +32,7 @@ #include "../../core/rpc_lookup.h" #include "../../modules/auth/api.h" -#include "autheph_mod.h" +#include "auth_ephemeral_mod.h" #include "authorize.h" #include "checks.h" diff --git a/src/modules/auth_ephemeral/autheph_mod.h b/src/modules/auth_ephemeral/auth_ephemeral_mod.h similarity index 100% rename from src/modules/auth_ephemeral/autheph_mod.h rename to src/modules/auth_ephemeral/auth_ephemeral_mod.h diff --git a/src/modules/auth_ephemeral/authorize.c b/src/modules/auth_ephemeral/authorize.c index f10c4d77429..b7ca0c8269f 100644 --- a/src/modules/auth_ephemeral/authorize.c +++ b/src/modules/auth_ephemeral/authorize.c @@ -37,7 +37,7 @@ #include "../../core/parser/hf.h" #include "../../core/mod_fix.h" -#include "autheph_mod.h" +#include "auth_ephemeral_mod.h" #include "authorize.h" static inline int get_pass(str *_username, str *_secret, str *_password) diff --git a/src/modules/auth_ephemeral/checks.c b/src/modules/auth_ephemeral/checks.c index f4e31ec5c8e..798a66eab39 100644 --- a/src/modules/auth_ephemeral/checks.c +++ b/src/modules/auth_ephemeral/checks.c @@ -34,7 +34,7 @@ #include "../../core/parser/parse_uri.h" #include "../../core/mod_fix.h" -#include "autheph_mod.h" +#include "auth_ephemeral_mod.h" #include "authorize.h" #include "checks.h"