[svn-commits] objsys: branch 1.2 r378 - /branches/1.2/asterisk-ooh323c/src/chan_h323.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Mon Apr 30 13:55:45 MST 2007


Author: objsys
Date: Mon Apr 30 15:55:44 2007
New Revision: 378

URL: http://svn.digium.com/view/asterisk-addons?view=rev&rev=378
Log:
fix for logname usage in config file

Modified:
    branches/1.2/asterisk-ooh323c/src/chan_h323.c

Modified: branches/1.2/asterisk-ooh323c/src/chan_h323.c
URL: http://svn.digium.com/view/asterisk-addons/branches/1.2/asterisk-ooh323c/src/chan_h323.c?view=diff&rev=378&r1=377&r2=378
==============================================================================
--- branches/1.2/asterisk-ooh323c/src/chan_h323.c (original)
+++ branches/1.2/asterisk-ooh323c/src/chan_h323.c Mon Apr 30 15:55:44 2007
@@ -1999,7 +1999,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 svn-commits mailing list