summaryrefslogtreecommitdiff
path: root/main/cryptostub.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-03-04 23:04:29 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-03-04 23:04:29 +0000
commitcfc1df4c1a5605bf57191dee4d137122cbafded7 (patch)
tree36a818ef47a50925ad9a7269bc290cb079783e52 /main/cryptostub.c
parent96e04792bdb8aa2235f6a8b5b1a3e4204b78eacf (diff)
Whitespace changes only
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@105840 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/cryptostub.c')
-rw-r--r--main/cryptostub.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/main/cryptostub.c b/main/cryptostub.c
index c3b59c7b3..ffdaa6635 100644
--- a/main/cryptostub.c
+++ b/main/cryptostub.c
@@ -39,22 +39,22 @@ static struct ast_key *stub_ast_key_get(const char *kname, int ktype)
#define build_stub(func_name,...) \
static int stub_ ## func_name(__VA_ARGS__) \
{ \
- ast_log(LOG_NOTICE, "Crypto support not loaded!\n"); \
- return -1; \
+ ast_log(LOG_NOTICE, "Crypto support not loaded!\n"); \
+ return -1; \
} \
\
int (*func_name)(__VA_ARGS__) = \
- stub_ ## func_name;
+ stub_ ## func_name;
#endif
#define build_stub(func_name,...) \
static int stub_##func_name(__VA_ARGS__) \
{ \
- ast_log(LOG_NOTICE, "Crypto support not loaded!\n"); \
- return -1; \
+ ast_log(LOG_NOTICE, "Crypto support not loaded!\n"); \
+ return -1; \
} \
\
int (*func_name)(__VA_ARGS__) = \
- stub_##func_name;
+ stub_##func_name;
struct ast_key *(*ast_key_get)(const char *key, int type) =
stub_ast_key_get;