aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-26 19:29:12 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-26 19:29:12 +0000
commit7060217fa102a7b48ae2c8431ec1dde867ea7787 (patch)
tree531fcaba9700e685dc3cf076e823cea12c5b8921 /main
parenta68fc90ea676d7bafb7916fa43cce923b7fdec5f (diff)
Merged revisions 77348 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r77348 | tilghman | 2007-07-26 14:27:18 -0500 (Thu, 26 Jul 2007) | 2 lines Oops, that builtin define should be all-lowercase. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@77349 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/logger.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/logger.c b/main/logger.c
index 49d4a647f..dc277d11a 100644
--- a/main/logger.c
+++ b/main/logger.c
@@ -953,7 +953,7 @@ void ast_log(int level, const char *file, int line, const char *function, const
void ast_backtrace(void)
{
-#ifdef Linux
+#ifdef linux
#ifdef AST_DEVMODE
int count=0, i=0;
void **addresses;
@@ -975,7 +975,7 @@ void ast_backtrace(void)
#else
ast_log(LOG_WARNING, "Must run configure with '--enable-dev-mode' for stack backtraces.\n");
#endif
-#else /* ndef Linux */
+#else /* ndef linux */
ast_log(LOG_WARNING, "Inline stack backtraces are only available on the Linux platform.\n");
#endif
}