diff options
author | Emanuele Aina <emanuele.aina@collabora.com> | 2013-04-01 23:04:08 +0800 |
---|---|---|
committer | Emanuele Aina <emanuele.aina@collabora.com> | 2013-04-02 05:40:42 +0800 |
commit | 0d137b74e57840bd85f090becd4144f62c89d6ab (patch) | |
tree | 24ebd2c6a04b9eaa791215e4a801a298e74abaa6 /src/empathy-auth-client.c | |
parent | 4d8ed19e779716a81fe7b37aa0f51a68057e0a2a (diff) | |
download | gsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.tar gsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.tar.gz gsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.tar.bz2 gsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.tar.lz gsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.tar.xz gsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.tar.zst gsoc2013-empathy-0d137b74e57840bd85f090becd4144f62c89d6ab.zip |
Reorder header inclusions accordingly to the Telepathy coding style
Sort by:
• "config.h"
• API declarations, if any
• public libraries
• internal headers, alphabetically sorted (mostly)
http://telepathy.freedesktop.org/wiki/Style#A.23includes
https://bugzilla.gnome.org/show_bug.cgi?id=697076
Diffstat (limited to 'src/empathy-auth-client.c')
-rw-r--r-- | src/empathy-auth-client.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/empathy-auth-client.c b/src/empathy-auth-client.c index 6da465665..be5b13a0b 100644 --- a/src/empathy-auth-client.c +++ b/src/empathy-auth-client.c @@ -22,21 +22,19 @@ #include "config.h" #include <glib/gi18n.h> +#include <gnutls/gnutls.h> -#define DEBUG_FLAG EMPATHY_DEBUG_TLS -#include "empathy-debug.h" #include "empathy-auth-factory.h" -#include "empathy-server-tls-handler.h" -#include "empathy-tls-verifier.h" - #include "empathy-bad-password-dialog.h" #include "empathy-password-dialog.h" +#include "empathy-sanity-cleaning.h" +#include "empathy-server-tls-handler.h" #include "empathy-tls-dialog.h" +#include "empathy-tls-verifier.h" #include "empathy-ui-utils.h" -#include "empathy-sanity-cleaning.h" - -#include <gnutls/gnutls.h> +#define DEBUG_FLAG EMPATHY_DEBUG_TLS +#include "empathy-debug.h" #define TIMEOUT 60 |