[Freeswitch-svn] [commit] r12032 - freeswitch/trunk/scripts/contrib/intralanman/PHP/fs_curl

FreeSWITCH SVN intralanman at freeswitch.org
Sun Feb 15 10:57:39 PST 2009


Author: intralanman
Date: Sun Feb 15 12:57:39 2009
New Revision: 12032

Log:
only LOG_USER exists on windows... trying to make cross-platform 

Modified:
   freeswitch/trunk/scripts/contrib/intralanman/PHP/fs_curl/fs_curl.php

Modified: freeswitch/trunk/scripts/contrib/intralanman/PHP/fs_curl/fs_curl.php
==============================================================================
--- freeswitch/trunk/scripts/contrib/intralanman/PHP/fs_curl/fs_curl.php	(original)
+++ freeswitch/trunk/scripts/contrib/intralanman/PHP/fs_curl/fs_curl.php	Sun Feb 15 12:57:39 2009
@@ -51,7 +51,7 @@
      * @return void
     */
     public function fs_curl() {
-	openlog('fs_curl', LOG_NDELAY | LOG_PID, LOG_LOCAL0);
+	openlog('fs_curl', LOG_NDELAY | LOG_PID, LOG_USER);
         header('Content-Type: text/xml');
         $this -> open_xml();
         $this -> generate_request_array();



More information about the Freeswitch-svn mailing list