Changeset 1503

Show
Ignore:
Timestamp:
06/06/08 09:13:28 (7 months ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/branches/0.7

    • Property svnmerge-integrated changed from /cherokee/trunk:1-1456,1460,1463,1465,1468,1482,1484,1486 to /cherokee/trunk:1-1456,1460,1463,1465,1468,1482,1484,1486,1501
  • cherokee/branches/0.7/ChangeLog

    r1502 r1503  
     12008-06-06  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * cherokee/virtual_server.c (cherokee_virtual_server_new_rule): 
     4        Fixes a wrong sanity check. 
     5 
    162008-06-04  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
    27 
  • cherokee/branches/0.7/cherokee/virtual_server.c

    r1448 r1503  
    536536        /* Sanity check 
    537537         */ 
    538         if (type == NULL) { 
     538        if (cherokee_buffer_is_empty (type)) { 
    539539                PRINT_ERROR ("Rule match prio=%d must include a type property\n", priority); 
    540                 return ret
     540                return ret_error
    541541        } 
    542542