Changeset 1545

Show
Ignore:
Timestamp:
06/13/08 20:32:59 (4 months ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/ChangeLog

    r1543 r1545  
    112008-06-13  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * cherokee/main_guardian.c (save_pid_file): Bug fix: Do not try to 
     4        save the PID file if it couldn't be opened for writing. 
    25 
    36        * qa/167-RuleGeoIP.py (Test.Prepare): Configuration is not added 
     
    1138111384        at accept(). 
    1138211385 
    11383         * src/connection.c (cherokee_connection_log): New log writting 
     11386        * src/connection.c (cherokee_connection_log): New log writing 
    1138411387        function CLF (Common Log Format) compliant. 
    1138511388 
  • cherokee/trunk/cherokee/main_guardian.c

    r1439 r1545  
    176176        if (file == NULL) { 
    177177                PRINT_MSG ("Cannot write PID file '%s'\n", PID_FILE); 
     178                return; 
    178179        } 
    179180