Changeset 1850

Show
Ignore:
Timestamp:
08/16/08 17:45:30 (3 months ago)
Author:
alo
Message:

--

Files:

Legend:

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

    r1849 r1850  
     12008-08-16  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * cherokee/balancer.c (cherokee_balancer_instance): Adds a sanity 
     4        check (only broken configurations could fail on this check). 
     5 
    162008-08-15  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
    27 
  • cherokee/trunk/cherokee/balancer.c

    r1131 r1850  
    221221        cherokee_plugin_info_t *info      = NULL; 
    222222         
     223        if (cherokee_buffer_is_empty (name)) { 
     224                PRINT_ERROR_S ("Balancer defined without a value\n"); 
     225                return ret_error; 
     226        } 
     227 
    223228        ret = cherokee_plugin_loader_get (&srv->loader, name->buf, &info); 
    224229        if (ret != ret_ok) return ret;