diff options
author | Moritz Luedecke <ritze@skweez.net> | 2017-08-20 15:24:16 +0200 |
---|---|---|
committer | Moritz Luedecke <ritze@skweez.net> | 2017-08-20 15:24:16 +0200 |
commit | daa292de8e139e7aaebcee3cc9d52f750ae3d95b (patch) | |
tree | 3337700393ed007a504a93f1f71c18c53d84c498 /pinentry-dmenu.c | |
parent | 75634f63d166b2916763249875310fc1269fe626 (diff) |
Remove unused variable and fix a warning
Diffstat (limited to 'pinentry-dmenu.c')
-rw-r--r-- | pinentry-dmenu.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/pinentry-dmenu.c b/pinentry-dmenu.c index 047c2dc..ba6172e 100644 --- a/pinentry-dmenu.c +++ b/pinentry-dmenu.c @@ -570,16 +570,13 @@ main(int argc, char *argv[]) { const char *str; char path[PATH_MAX]; struct passwd *pw = getpwuid(getuid()); + config_t cfg; + config_init(&cfg); i = strlen(pw->pw_dir); strcpy(path, pw->pw_dir); strcpy(&path[i], CONFIG); - config_t cfg; - config_setting_t *setting; - - config_init(&cfg); - /* Read the file. If there is an error, report it and exit. */ if (config_read_file(&cfg, path)) { if (config_lookup_string(&cfg, "asterisk", &str)) { @@ -627,7 +624,7 @@ main(int argc, char *argv[]) { if (config_lookup_bool(&cfg, "embedded", &bval)) { embedded = bval; } - } else if (str = config_error_file(&cfg)) { + } else if ((str = config_error_file(&cfg))) { fprintf(stderr, "%s:%d: %s\n", config_error_file(&cfg), config_error_line(&cfg), config_error_text(&cfg)); return(EXIT_FAILURE); |