diff options
Diffstat (limited to 'camel/providers/nntp')
-rw-r--r-- | camel/providers/nntp/camel-nntp-provider.c | 2 | ||||
-rw-r--r-- | camel/providers/nntp/camel-nntp-store.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/nntp/camel-nntp-provider.c b/camel/providers/nntp/camel-nntp-provider.c index 6cd7d96978..214fd4b0fa 100644 --- a/camel/providers/nntp/camel-nntp-provider.c +++ b/camel/providers/nntp/camel-nntp-provider.c @@ -39,7 +39,6 @@ static CamelProvider news_provider = { CAMEL_PROVIDER_IS_REMOTE | CAMEL_PROVIDER_IS_STORAGE, { 0, 0 }, - { 119, 0 }, NULL }; @@ -56,7 +55,6 @@ static CamelProvider nntp_provider = { CAMEL_PROVIDER_IS_REMOTE, { 0, 0 }, - { 119, 0 }, NULL }; diff --git a/camel/providers/nntp/camel-nntp-store.c b/camel/providers/nntp/camel-nntp-store.c index 1e6ccd53c1..710e1d2e13 100644 --- a/camel/providers/nntp/camel-nntp-store.c +++ b/camel/providers/nntp/camel-nntp-store.c @@ -386,8 +386,10 @@ static void camel_nntp_store_init (gpointer object, gpointer klass) { CamelService *service = CAMEL_SERVICE (object); + CamelRemoteStore *remote_store = CAMEL_REMOTE_STORE (object); service->url_flags = CAMEL_SERVICE_URL_NEED_HOST; + remote_store->default_port = 119; } CamelType |