diff options
author | venaas <venaas> | 2008-09-08 07:02:48 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2008-09-08 07:02:48 +0000 |
commit | ca9d4e3d82bf2e1a26518b2e79e46ee1211716db (patch) | |
tree | a7e3b669db7d45e4c95b4e5d6423a20873cc940b | |
parent | b517f3e227e1946c24804c540c1499aed0b2b9f3 (diff) |
s/rewriteattr.*/rewriteusername.*/
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@363 e88ac4ed-0b26-0410-9574-a7f39faa03bf
-rw-r--r-- | radsecproxy.c | 34 | ||||
-rw-r--r-- | radsecproxy.h | 4 |
2 files changed, 19 insertions, 19 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index c706935..28c7155 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -1568,9 +1568,9 @@ int rewriteusername(struct request *rq, char *in) { regmatch_t pmatch[10], *pfield; int i; unsigned char *result; - char *out = rq->from->conf->rewriteattrreplacement; + char *out = rq->from->conf->rewriteusernamereplacement; - if (regexec(rq->from->conf->rewriteattrregex, in, nmatch, pmatch, 0)) { + if (regexec(rq->from->conf->rewriteusernameregex, in, nmatch, pmatch, 0)) { debug(DBG_DBG, "rewriteattr: username not matching, no rewrite"); return 1; } @@ -1843,7 +1843,7 @@ int radsrv(struct request *rq) { username[ATTRVALLEN(attr)] = '\0'; radattr2ascii(userascii, sizeof(userascii), attr); - if (rq->from->conf->rewriteattrregex) { + if (rq->from->conf->rewriteusernameregex) { if (!rewriteusername(rq, username)) { debug(DBG_WARN, "radsrv: username malloc failed, ignoring request"); goto exit; @@ -2821,24 +2821,24 @@ int addrewriteattr(struct clsrvconf *conf) { *w = '\0'; w++; - conf->rewriteattrregex = malloc(sizeof(regex_t)); - if (!conf->rewriteattrregex) { + conf->rewriteusernameregex = malloc(sizeof(regex_t)); + if (!conf->rewriteusernameregex) { debug(DBG_ERR, "malloc failed"); return 0; } - conf->rewriteattrreplacement = stringcopy(w, 0); - if (!conf->rewriteattrreplacement) { - free(conf->rewriteattrregex); - conf->rewriteattrregex = NULL; + conf->rewriteusernamereplacement = stringcopy(w, 0); + if (!conf->rewriteusernamereplacement) { + free(conf->rewriteusernameregex); + conf->rewriteusernameregex = NULL; return 0; } - if (regcomp(conf->rewriteattrregex, v, REG_ICASE | REG_EXTENDED)) { - free(conf->rewriteattrregex); - conf->rewriteattrregex = NULL; - free(conf->rewriteattrreplacement); - conf->rewriteattrreplacement = NULL; + if (regcomp(conf->rewriteusernameregex, v, REG_ICASE | REG_EXTENDED)) { + free(conf->rewriteusernameregex); + conf->rewriteusernameregex = NULL; + free(conf->rewriteusernamereplacement); + conf->rewriteusernamereplacement = NULL; debug(DBG_ERR, "failed to compile regular expression %s", v); return 0; } @@ -2942,9 +2942,9 @@ void freeclsrvconf(struct clsrvconf *conf) { regfree(conf->certuriregex); free(conf->confrewrite); free(conf->rewriteattr); - if (conf->rewriteattrregex) - regfree(conf->rewriteattrregex); - free(conf->rewriteattrreplacement); + if (conf->rewriteusernameregex) + regfree(conf->rewriteusernameregex); + free(conf->rewriteusernamereplacement); free(conf->dynamiclookupcommand); free(conf->rewrite); if (conf->addrinfo) diff --git a/radsecproxy.h b/radsecproxy.h index e9f3bed..8985b3c 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -97,8 +97,8 @@ struct clsrvconf { regex_t *certuriregex; char *confrewrite; char *rewriteattr; - regex_t *rewriteattrregex; - char *rewriteattrreplacement; + regex_t *rewriteusernameregex; + char *rewriteusernamereplacement; char *dynamiclookupcommand; uint8_t statusserver; uint8_t retryinterval; |