From 73f34050a143f01dd6ec004018ca514b37852343 Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Wed, 11 Oct 2000 23:00:53 +0000 Subject: remove the leading '/'. (nntp_store_subscribe_folder): same. 2000-10-11 Chris Toshok * providers/nntp/camel-nntp-store.c (nntp_store_unsubscribe_folder): remove the leading '/'. (nntp_store_subscribe_folder): same. (nntp_store_folder_subscribed): same. svn path=/trunk/; revision=5868 --- camel/providers/nntp/camel-nntp-store.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'camel/providers/nntp/camel-nntp-store.c') diff --git a/camel/providers/nntp/camel-nntp-store.c b/camel/providers/nntp/camel-nntp-store.c index a83bb8778c..44b5fc102f 100644 --- a/camel/providers/nntp/camel-nntp-store.c +++ b/camel/providers/nntp/camel-nntp-store.c @@ -456,7 +456,7 @@ nntp_store_folder_subscribed (CamelStore *store, const char *folder_name) { CamelNNTPStore *nntp_store = CAMEL_NNTP_STORE (store); - return camel_nntp_newsrc_group_is_subscribed (nntp_store->newsrc, folder_name); + return camel_nntp_newsrc_group_is_subscribed (nntp_store->newsrc, folder_name + 1); } static void @@ -465,7 +465,7 @@ nntp_store_subscribe_folder (CamelStore *store, const char *folder_name, { CamelNNTPStore *nntp_store = CAMEL_NNTP_STORE (store); - camel_nntp_newsrc_subscribe_group (nntp_store->newsrc, folder_name); + camel_nntp_newsrc_subscribe_group (nntp_store->newsrc, folder_name + 1); } static void @@ -474,7 +474,7 @@ nntp_store_unsubscribe_folder (CamelStore *store, const char *folder_name, { CamelNNTPStore *nntp_store = CAMEL_NNTP_STORE (store); - camel_nntp_newsrc_unsubscribe_group (nntp_store->newsrc, folder_name); + camel_nntp_newsrc_unsubscribe_group (nntp_store->newsrc, folder_name + 1); } static void -- cgit v1.2.3