summaryrefslogtreecommitdiff
path: root/alpine/xoauth2conf.c
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2020-05-13 00:30:17 -0600
committerEduardo Chappa <chappa@washington.edu>2020-05-13 00:30:17 -0600
commit1a2261b89b700ae5d73bb82a7b581d7d30012f90 (patch)
tree51ced868d34a26b3cca6327c146e47d1361b8154 /alpine/xoauth2conf.c
parent094812e001c4e78ecc9ff69be6f6e4fe0448c3fd (diff)
downloadalpine-1a2261b89b700ae5d73bb82a7b581d7d30012f90.tar.xz
* Clear a few compilations warnings, produced by gcc.
Diffstat (limited to 'alpine/xoauth2conf.c')
-rw-r--r--alpine/xoauth2conf.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/alpine/xoauth2conf.c b/alpine/xoauth2conf.c
index 3509ef6e..2e7ce49a 100644
--- a/alpine/xoauth2conf.c
+++ b/alpine/xoauth2conf.c
@@ -162,7 +162,7 @@ xoauth_parse_client_info(char *lvalp, char **namep, char **idp, char **secretp)
if (lvalp == NULL) return;
- if(s = strstr(lvalp, XNAME)){
+ if((s = strstr(lvalp, XNAME)) != NULL){
s += strlen(XNAME);
if(*s == '"') s++;
for(t = s; *t && *t != '"' && *t != ' '; t++);
@@ -172,7 +172,7 @@ xoauth_parse_client_info(char *lvalp, char **namep, char **idp, char **secretp)
*t = c;
}
- if(s = strstr(lvalp, XID)){
+ if((s = strstr(lvalp, XID)) != NULL){
s += strlen(XID);
if(*s == '"') s++;
for(t = s; *t && *t != '"' && *t != ' '; t++);
@@ -182,7 +182,7 @@ xoauth_parse_client_info(char *lvalp, char **namep, char **idp, char **secretp)
*t = c;
}
- if(s = strstr(lvalp, XSECRET)){
+ if((s = strstr(lvalp, XSECRET)) != NULL){
s += strlen(XSECRET);
if(*s == '"') s++;
for(t = s; *t && *t != '"' && *t != ' '; t++);
@@ -219,6 +219,7 @@ alpine_xoauth2_configuration(struct pine *ps, int edit_exceptions)
dprint((3, "-- alpine_xoauth2_configuration --\n"));
+ expose_hidden_config = F_ON(F_EXPOSE_HIDDEN_CONFIG, ps_global);
ew = edit_exceptions ? ps_global->ew_for_except_vars : Main;
if(ps->restricted)
@@ -309,6 +310,9 @@ alpine_xoauth2_configuration(struct pine *ps, int edit_exceptions)
ctmpa->help = NO_HELP;
ctmpa->valoffset = 1;
ctmpa->value = cpystr(alpine_oauth2_list[i].name);
+ ctmpa->varname = NULL;
+ ctmpa->varnamep = ctmpb = ctmpa;
+
/* Setup client-id variable */
varlist[l]->name = cpystr(XOAUTH2_CLIENT_ID);