[asterisk-addons-commits] file: trunk r390 - in /trunk: ./ asterisk-ooh323c/src/chan_h323.c

asterisk-addons-commits at lists.digium.com asterisk-addons-commits at lists.digium.com
Thu Jun 7 05:26:37 MST 2007


Author: file
Date: Thu Jun  7 07:26:37 2007
New Revision: 390

URL: http://svn.digium.com/view/asterisk-addons?view=rev&rev=390
Log:
Merged revisions 389 via svnmerge from 
https://origsvn.digium.com/svn/asterisk-addons/branches/1.4

........
r389 | file | 2007-06-07 08:25:14 -0400 (Thu, 07 Jun 2007) | 2 lines

Don't try to use the name of the configuration option as the logfile... instead use the configuration value. (issue #9908 reported by T-80)

........

Modified:
    trunk/   (props changed)
    trunk/asterisk-ooh323c/src/chan_h323.c

Propchange: trunk/
------------------------------------------------------------------------------
--- branch-1.4-merged (original)
+++ branch-1.4-merged Thu Jun  7 07:26:37 2007
@@ -1,1 +1,1 @@
-/branches/1.4:1-299,308,310,317,319,329,342,348,358,380,382,387
+/branches/1.4:1-299,308,310,317,319,329,342,348,358,380,382,387,389

Modified: trunk/asterisk-ooh323c/src/chan_h323.c
URL: http://svn.digium.com/view/asterisk-addons/trunk/asterisk-ooh323c/src/chan_h323.c?view=diff&rev=390&r1=389&r2=390
==============================================================================
--- trunk/asterisk-ooh323c/src/chan_h323.c (original)
+++ trunk/asterisk-ooh323c/src/chan_h323.c Thu Jun  7 07:26:37 2007
@@ -1915,7 +1915,7 @@
          }
       }
       else if (!strcasecmp(v->name, "logfile")) {
-         strncpy(gLogFile, v->name, sizeof(gLogFile)-1);
+         strncpy(gLogFile, v->value, sizeof(gLogFile)-1);
       }
       else if (!strcasecmp(v->name, "context")) {
          strncpy(gContext, v->value, sizeof(gContext)-1);



More information about the asterisk-addons-commits mailing list