diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-10-24 03:57:58 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-10-24 03:57:58 +0800 |
commit | b1be2a6d83aa9b9404ca735e73e73dc903625dc7 (patch) | |
tree | 36ede0609588101ba900b8c018462b7c7a3591c9 /camel/camel-sasl.c | |
parent | 18ca85654d06140f30ea9db347dcf4f7cf00d7f0 (diff) | |
download | gsoc2013-evolution-b1be2a6d83aa9b9404ca735e73e73dc903625dc7.tar.gz gsoc2013-evolution-b1be2a6d83aa9b9404ca735e73e73dc903625dc7.tar.zst gsoc2013-evolution-b1be2a6d83aa9b9404ca735e73e73dc903625dc7.zip |
Removed unneeded CAMEL_OBJECT() casts.
2003-10-23 Jeffrey Stedfast <fejj@ximian.com>
* *.c: Removed unneeded CAMEL_OBJECT() casts.
svn path=/trunk/; revision=23052
Diffstat (limited to 'camel/camel-sasl.c')
-rw-r--r-- | camel/camel-sasl.c | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/camel/camel-sasl.c b/camel/camel-sasl.c index 7f435612dd..24ee6e4d94 100644 --- a/camel/camel-sasl.c +++ b/camel/camel-sasl.c @@ -2,7 +2,7 @@ /* * Authors: Jeffrey Stedfast <fejj@ximian.com> * - * Copyright 2001 Ximian, Inc. (www.ximian.com) + * Copyright 2001-2003 Ximian, Inc. (www.ximian.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public @@ -20,6 +20,7 @@ * */ + #ifdef HAVE_CONFIG_H #include <config.h> #endif @@ -38,6 +39,7 @@ #include "camel-sasl-popb4smtp.h" #include "camel-sasl-ntlm.h" + #define w(x) static CamelObjectClass *parent_class = NULL; @@ -60,8 +62,8 @@ static void camel_sasl_finalize (CamelSasl *sasl) { g_free (sasl->service_name); - g_free(sasl->mech); - camel_object_unref (CAMEL_OBJECT (sasl->service)); + g_free (sasl->mech); + camel_object_unref (sasl->service); } CamelType @@ -191,32 +193,32 @@ camel_sasl_new (const char *service_name, const char *mechanism, CamelService *s /* We don't do ANONYMOUS here, because it's a little bit weird. */ if (!strcmp (mechanism, "CRAM-MD5")) - sasl = (CamelSasl *)camel_object_new (CAMEL_SASL_CRAM_MD5_TYPE); + sasl = (CamelSasl *) camel_object_new (CAMEL_SASL_CRAM_MD5_TYPE); else if (!strcmp (mechanism, "DIGEST-MD5")) - sasl = (CamelSasl *)camel_object_new (CAMEL_SASL_DIGEST_MD5_TYPE); + sasl = (CamelSasl *) camel_object_new (CAMEL_SASL_DIGEST_MD5_TYPE); #ifdef HAVE_KRB5 else if (!strcmp (mechanism, "GSSAPI")) - sasl = (CamelSasl *)camel_object_new (CAMEL_SASL_GSSAPI_TYPE); + sasl = (CamelSasl *) camel_object_new (CAMEL_SASL_GSSAPI_TYPE); #endif #ifdef HAVE_KRB4 else if (!strcmp (mechanism, "KERBEROS_V4")) - sasl = (CamelSasl *)camel_object_new (CAMEL_SASL_KERBEROS4_TYPE); + sasl = (CamelSasl *) camel_object_new (CAMEL_SASL_KERBEROS4_TYPE); #endif else if (!strcmp (mechanism, "PLAIN")) - sasl = (CamelSasl *)camel_object_new (CAMEL_SASL_PLAIN_TYPE); + sasl = (CamelSasl *) camel_object_new (CAMEL_SASL_PLAIN_TYPE); else if (!strcmp (mechanism, "LOGIN")) - sasl = (CamelSasl *)camel_object_new (CAMEL_SASL_LOGIN_TYPE); + sasl = (CamelSasl *) camel_object_new (CAMEL_SASL_LOGIN_TYPE); else if (!strcmp (mechanism, "POPB4SMTP")) - sasl = (CamelSasl *)camel_object_new (CAMEL_SASL_POPB4SMTP_TYPE); + sasl = (CamelSasl *) camel_object_new (CAMEL_SASL_POPB4SMTP_TYPE); else if (!strcmp (mechanism, "NTLM")) - sasl = (CamelSasl *)camel_object_new (CAMEL_SASL_NTLM_TYPE); + sasl = (CamelSasl *) camel_object_new (CAMEL_SASL_NTLM_TYPE); else return NULL; - sasl->mech = g_strdup(mechanism); + sasl->mech = g_strdup (mechanism); sasl->service_name = g_strdup (service_name); sasl->service = service; - camel_object_ref (CAMEL_OBJECT (service)); + camel_object_ref (service); return sasl; } |