[asterisk-commits] tilghman: branch 1.4 r77348 - /branches/1.4/main/logger.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Jul 26 14:27:19 CDT 2007


Author: tilghman
Date: Thu Jul 26 14:27:18 2007
New Revision: 77348

URL: http://svn.digium.com/view/asterisk?view=rev&rev=77348
Log:
Oops, that builtin define should be all-lowercase.

Modified:
    branches/1.4/main/logger.c

Modified: branches/1.4/main/logger.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/logger.c?view=diff&rev=77348&r1=77347&r2=77348
==============================================================================
--- branches/1.4/main/logger.c (original)
+++ branches/1.4/main/logger.c Thu Jul 26 14:27:18 2007
@@ -819,7 +819,7 @@
 
 void ast_backtrace(void)
 {
-#ifdef Linux
+#ifdef linux
 #ifdef AST_DEVMODE
 	int count=0, i=0;
 	void **addresses;
@@ -841,7 +841,7 @@
 #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
 }




More information about the asterisk-commits mailing list