aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-26 19:27:18 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-26 19:27:18 +0000
commit2bb7a8cbccfa79cf28d313219a3c6d35607eb0e1 (patch)
treef1d8479463ce467a80d4892b5cc3846e871cfbab
parent5bdf298fc7e4e1f610ee759f6c769e5ce84c8630 (diff)
Oops, that builtin define should be all-lowercase.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@77348 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--main/logger.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/logger.c b/main/logger.c
index e2291d966..459b8d382 100644
--- a/main/logger.c
+++ b/main/logger.c
@@ -819,7 +819,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;
@@ -841,7 +841,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
}