]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Oops, that builtin define should be all-lowercase.
authorTilghman Lesher <tilghman@meg.abyt.es>
Thu, 26 Jul 2007 19:27:18 +0000 (19:27 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Thu, 26 Jul 2007 19:27:18 +0000 (19:27 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@77348 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/logger.c

index e2291d96615488491338298ad9be22e3f198b445..459b8d382d229ad435d9797ea08c911bb6654fd6 100644 (file)
@@ -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
 }