diff options
author | James Booth <boothj5@gmail.com> | 2015-01-13 00:43:17 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-01-13 00:43:17 +0000 |
commit | a932998fb1d988cc75d624e81dbdde49f9b84b09 (patch) | |
tree | 2079ff10a1299e85b13bc65bb1a2cb23446473fc /src/config | |
parent | 21f8b1c4caa354efd3dfe567648916d6e58318a2 (diff) | |
download | profani-tty-a932998fb1d988cc75d624e81dbdde49f9b84b09.tar.gz |
Removed unused include, free eval_password
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/account.c | 1 | ||||
-rw-r--r-- | src/config/accounts.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/config/account.c b/src/config/account.c index 3ca63db0..6df00382 100644 --- a/src/config/account.c +++ b/src/config/account.c @@ -162,6 +162,7 @@ account_free(ProfAccount *account) free(account->name); free(account->jid); free(account->password); + free(account->eval_password); free(account->resource); free(account->server); free(account->last_presence); diff --git a/src/config/accounts.c b/src/config/accounts.c index 2e7092a5..01609888 100644 --- a/src/config/accounts.c +++ b/src/config/accounts.c @@ -46,7 +46,6 @@ #include "log.h" #include "tools/autocomplete.h" #include "xmpp/xmpp.h" -#include "ui/ui.h" static gchar *accounts_loc; static GKeyFile *accounts; |