commit eb08800c23ec64330e3ad415141ecb6e686039e4
parent 60ad263e6168fdac3d7fa5a5d9461aacd90157b0
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Tue, 19 Jan 2016 15:01:50 +0100
Fix typo in handling feed name ending with a period on Win32.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/plugins/rssyl/rssyl_subscribe.c b/src/plugins/rssyl/rssyl_subscribe.c
@@ -133,7 +133,7 @@ gboolean rssyl_subscribe(FolderItem *parent, const gchar *url,
if (tmpname2[0] == '.')
tmpname2[0] = "_";
if (tmpname2[strlen(tmpname2) - 1] == '.')
- tmpname2[strlen(tmpname2) - 1] == '_';
+ tmpname2[strlen(tmpname2) - 1] = '_';
#endif
while (folder_find_child_item_by_name(parent, tmpname2) != 0 && i < 20) {