diff options
author | Schanzenbach, Martin <mschanzenbach@posteo.de> | 2018-10-26 09:17:00 +0900 |
---|---|---|
committer | Schanzenbach, Martin <mschanzenbach@posteo.de> | 2018-10-26 09:17:00 +0900 |
commit | 2897ea16a77d8c0d47a2564703fb4759a8f3f45f (patch) | |
tree | f8aefcba2051eeaa04890148f05ed522d6993ca7 /src/rest-plugins/oidc_helper.c | |
parent | f33f9137d4cdc492be3d845b97ac858d4ac2e14d (diff) |
REST: remove base64 padding fix as this is now fixed in encoder
Diffstat (limited to 'src/rest-plugins/oidc_helper.c')
-rw-r--r-- | src/rest-plugins/oidc_helper.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/rest-plugins/oidc_helper.c b/src/rest-plugins/oidc_helper.c index 1e9e64fec..539d59e08 100644 --- a/src/rest-plugins/oidc_helper.c +++ b/src/rest-plugins/oidc_helper.c @@ -57,12 +57,6 @@ replace_char(char* str, char find, char replace){ //RFC4648 static void fix_base64(char* str) { - char *padding; - //First, remove trailing padding '=' - padding = strtok(str, "="); - while (NULL != padding) - padding = strtok(NULL, "="); - //Replace + with - replace_char (str, '+', '-'); |