aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-05-17 08:34:02 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-05-17 08:34:02 +0800
commit7c76386907cf4ed8ccde4f5bddf4dde177a073ac (patch)
treeaed113c451206dc7b0106c9fe52cf941643f727b
parentb18ddb975119858e8a4130ed827fb516a2ebdced (diff)
downloadgsoc2013-evolution-7c76386907cf4ed8ccde4f5bddf4dde177a073ac.tar
gsoc2013-evolution-7c76386907cf4ed8ccde4f5bddf4dde177a073ac.tar.gz
gsoc2013-evolution-7c76386907cf4ed8ccde4f5bddf4dde177a073ac.tar.bz2
gsoc2013-evolution-7c76386907cf4ed8ccde4f5bddf4dde177a073ac.tar.lz
gsoc2013-evolution-7c76386907cf4ed8ccde4f5bddf4dde177a073ac.tar.xz
gsoc2013-evolution-7c76386907cf4ed8ccde4f5bddf4dde177a073ac.tar.zst
gsoc2013-evolution-7c76386907cf4ed8ccde4f5bddf4dde177a073ac.zip
The service can be NULL here too, thanks to Wayne Davis for pointing this
2001-05-16 Jeffrey Stedfast <fejj@ximian.com> * camel-session.c (camel_session_forget_password): The service can be NULL here too, thanks to Wayne Davis for pointing this out. svn path=/trunk/; revision=9863
-rw-r--r--camel/ChangeLog3
-rw-r--r--camel/camel-session.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 847482b14b..461ad7ef3f 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,8 @@
2001-05-16 Jeffrey Stedfast <fejj@ximian.com>
+ * camel-session.c (camel_session_forget_password): The service can
+ be NULL here too, thanks to Wayne Davis for pointing this out.
+
* camel-smime-context.c (camel_smime_context_new): We don't need
to be passed the certdb path anymore.
diff --git a/camel/camel-session.c b/camel/camel-session.c
index e0bdf95e96..7dc3c268f3 100644
--- a/camel/camel-session.c
+++ b/camel/camel-session.c
@@ -569,7 +569,6 @@ camel_session_forget_password (CamelSession *session, CamelService *service,
const char *item, CamelException *ex)
{
g_return_if_fail (CAMEL_IS_SESSION (session));
- g_return_if_fail (CAMEL_IS_SERVICE (service));
g_return_if_fail (item != NULL);
CS_CLASS (session)->forget_password (session, service, item, ex);