[Commits] [SCM] claws branch, master, updated. 3.13.2-215-gb453ee3
mones at claws-mail.org
mones at claws-mail.org
Fri Jul 29 20:21:22 CEST 2016
The branch, master has been updated
via b453ee32deecd70d49eaeab17b707ec026a129f7 (commit)
from adf00727b0c28dc7b02bd36283b54cac6b2b555b (commit)
Summary of changes:
src/passwordstore.c | 2 +-
src/plugins/archive/libarchive_archive.c | 7 +++----
2 files changed, 4 insertions(+), 5 deletions(-)
- Log -----------------------------------------------------------------
commit b453ee32deecd70d49eaeab17b707ec026a129f7
Author: Ricardo Mones <ricardo at mones.org>
Date: Fri Jul 29 20:21:05 2016 +0200
Remove more line breaks from g_warning()
diff --git a/src/passwordstore.c b/src/passwordstore.c
index 2694d89..87de3fa 100644
--- a/src/passwordstore.c
+++ b/src/passwordstore.c
@@ -409,7 +409,7 @@ void passwd_store_read_config(void)
PASSWORD_STORE_RC, NULL);
if (!g_file_get_contents(rcpath, &contents, NULL, &error)) {
- g_warning("couldn't read password store from file: %s\n", error->message);
+ g_warning("couldn't read password store from file: %s", error->message);
g_error_free(error);
g_free(rcpath);
return;
diff --git a/src/plugins/archive/libarchive_archive.c b/src/plugins/archive/libarchive_archive.c
index d084f80..5499d1e 100644
--- a/src/plugins/archive/libarchive_archive.c
+++ b/src/plugins/archive/libarchive_archive.c
@@ -1,6 +1,6 @@
/*
* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2008 Michael Rasmussen and the Claws Mail Team
+ * Copyright (C) 1999-2016 Michael Rasmussen and the Claws Mail Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -14,7 +14,6 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
*/
#ifdef HAVE_CONFIG_H
@@ -199,7 +198,7 @@ gboolean before_date(time_t msg_mtime, const gchar* before) {
debug_print("Cut-off date: %s\n", before);
if ((date = iso2GDate(before)) == NULL) {
- g_warning("Bad date format: %s\n", before);
+ g_warning("Bad date format: %s", before);
return FALSE;
}
@@ -214,7 +213,7 @@ gboolean before_date(time_t msg_mtime, const gchar* before) {
}
if (! g_date_valid(file_t)) {
- g_warning("Invalid msg date\n");
+ g_warning("Invalid msg date");
return FALSE;
}
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list