talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 4b812fcb035185c1edfb6efd81d3911f11f19771
parent aeb5b6ad61afcdaf27639eda07cefa55c058dac6
Author: Andrej Kacian <andrej@kacian.sk>
Date:   Mon, 19 Oct 2015 16:55:16 +0200

Add a forgotten RSSyl: prefix to log_print message from previous commit.

Diffstat:
Msrc/plugins/rssyl/rssyl_update_feed.c | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/plugins/rssyl/rssyl_update_feed.c b/src/plugins/rssyl/rssyl_update_feed.c @@ -150,8 +150,9 @@ void rssyl_fetch_feed(RFetchCtx *ctx, gboolean verbose) } else if (feed_get_title(ctx->feed) == NULL) { /* We shouldn't do this, since a title is mandatory. */ feed_set_title(ctx->feed, _("Untitled feed")); - log_print(LOG_PROTOCOL, _("Possibly invalid feed without title at %s.\n"), - feed_get_url(ctx->feed)); + log_print(LOG_PROTOCOL, + _("RSSyl: Possibly invalid feed without title at %s.\n"), + feed_get_url(ctx->feed)); } } }