main: Read config file only if no jid parameter provided

Signed-off-by: nex <nex@nexadn.de>
This commit is contained in:
nex 2020-06-11 12:22:35 +02:00
parent ecb5697ddb
commit d1abb7ebc5
No known key found for this signature in database
GPG Key ID: C5C5C02315CEDF8F

View File

@ -413,7 +413,8 @@ int main(int argc, char *argv[]) {
} }
} }
// Loading config file // Loading config file if jid not provided by command line
if (jid == NULL) {
GKeyFile *config_file = g_key_file_new(); GKeyFile *config_file = g_key_file_new();
GError *error = NULL; GError *error = NULL;
GString* configfile = g_string_new( g_get_home_dir()); GString* configfile = g_string_new( g_get_home_dir());
@ -439,6 +440,7 @@ int main(int argc, char *argv[]) {
pwd = g_key_file_get_value (config_file, account, "pwd" ,&error); pwd = g_key_file_get_value (config_file, account, "pwd" ,&error);
} }
} }
}
if ( !pwd ) { if ( !pwd ) {
static struct termios current_terminal; static struct termios current_terminal;