Bugfix: Key file does not have group ?default?

Bugfix for checking if configuration file exists. Also did some argv
parameter checks.

Issue: #26
This commit is contained in:
Stefan Kropp 2021-12-26 12:10:57 +01:00
parent 1b0f033bfb
commit f7373de0a5
3 changed files with 32 additions and 12 deletions

View File

@ -1,3 +1,8 @@
2020-05-16 Stefan Kropp <stefan.kropp@posteo.de>
Release 0.1.1
* Display help, if no parameter has been set
* fixed g_error_matches handling for config file
2020-05-16 DebXWoody <stefan@debxwoody.de> 2020-05-16 DebXWoody <stefan@debxwoody.de>
Release 0.1.0 Release 0.1.0

View File

@ -1,4 +1,4 @@
AC_INIT([xmppc], [0.1.0], [stefan@debxwoody.de]) AC_INIT([xmppc], [0.1.1], [stefan.kropp@posteo.de])
AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([src/main.c]) AC_CONFIG_SRCDIR([src/main.c])

View File

@ -338,6 +338,11 @@ int main(int argc, char *argv[]) {
printf("!!! WARNING: XMPPC is running in development mode !!!\n"); printf("!!! WARNING: XMPPC is running in development mode !!!\n");
#endif #endif
if(argc < 2) {
_show_help();
return EXIT_FAILURE;
}
INIT_XMPPC(xmppc); INIT_XMPPC(xmppc);
static int verbose_flag = 0; static int verbose_flag = 0;
@ -425,20 +430,30 @@ int main(int argc, char *argv[]) {
&error); &error);
if (!configfilefound) { if (!configfilefound) {
if(!g_error_matches(error, G_KEY_FILE_ERROR, G_KEY_FILE_ERROR_KEY_NOT_FOUND)) { if(error && !g_error_matches(error, G_FILE_ERROR, G_FILE_ERROR_NOENT)) {
logError(&xmppc, "Error loading key file: %s", error->message); logError(&xmppc, "Error loading key file: %s\n", error->message);
return -1; return EXIT_FAILURE;
} }
} else { if(jid == NULL && account == NULL) {
if(jid == NULL && pwd == NULL) { printf("You need either --jid or --account parameter or a default account\n");
logInfo(&xmppc,"Loading default account\n"); _show_help();
if( account == NULL ) { return EXIT_FAILURE;
account = "default";
}
jid = g_key_file_get_value (config_file, account, "jid" ,&error);
pwd = g_key_file_get_value (config_file, account, "pwd" ,&error);
} }
} }
error = NULL;
if(jid == NULL && pwd == NULL) {
logInfo(&xmppc,"Loading default account\n");
if( account == NULL ) {
account = "default";
}
jid = g_key_file_get_value (config_file, account, "jid" ,&error);
if( error ) {
logError(&xmppc, "No jid found in configuration file. %s\n", error->message);
return EXIT_FAILURE;
}
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;