Changeset 24 in Main for trunk/Server/config.c


Ignore:
Timestamp:
Sep 14, 2024, 11:09:58 PM (2 months ago)
Author:
Nishi
Message:

redirects properly now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/config.c

    r22 r24  
    8383        config.root.dir_count = 0;
    8484        config.root.icon_count = 0;
     85        config.root.index_count = 0;
    8586        config.vhost_count = 0;
    8687        config.module_count = 0;
     
    182183                                                                current->mime_count = 0;
    183184                                                                current->icon_count = 0;
     185                                                                current->index_count = 0;
    184186                                                                int i;
    185187                                                                current->name = cm_strdup(vhost);
     
    282284                                                                break;
    283285                                                        }
     286                                                }
     287                                        } else if(cm_strcaseequ(r[0], "DirectoryIndex")) {
     288                                                for(i = 1; r[i] != NULL; i++) {
     289                                                        current->indexes[current->index_count++] = cm_strdup(r[i]);
    284290                                                }
    285291                                        } else {
Note: See TracChangeset for help on using the changeset viewer.