View | Details | Raw Unified | Return to bug 54463
Collapse All | Expand All

(-)modules/aaa/mod_authn_file.c (-1 / +1 lines)
Lines 48-54 Link Here
48
static const char *set_authn_file_slot(cmd_parms *cmd, void *offset,
48
static const char *set_authn_file_slot(cmd_parms *cmd, void *offset,
49
                                       const char *f, const char *t)
49
                                       const char *f, const char *t)
50
{
50
{
51
    if (t && strcmp(t, "standard")) {
51
    if (t && strcasecmp(t, "standard")) {
52
        return apr_pstrcat(cmd->pool, "Invalid auth file type: ", t, NULL);
52
        return apr_pstrcat(cmd->pool, "Invalid auth file type: ", t, NULL);
53
    }
53
    }
54
54
(-)modules/aaa/mod_authz_groupfile.c (-1 / +1 lines)
Lines 73-79 Link Here
73
static const char *set_authz_groupfile_slot(cmd_parms *cmd, void *offset, const char *f,
73
static const char *set_authz_groupfile_slot(cmd_parms *cmd, void *offset, const char *f,
74
                                 const char *t)
74
                                 const char *t)
75
{
75
{
76
    if (t && strcmp(t, "standard")) {
76
    if (t && strcasecmp(t, "standard")) {
77
        return apr_pstrcat(cmd->pool, "Invalid auth file type: ", t, NULL);
77
        return apr_pstrcat(cmd->pool, "Invalid auth file type: ", t, NULL);
78
    }
78
    }
79
79

Return to bug 54463