summaryrefslogtreecommitdiff
path: root/gio/gdbusauth.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2010-05-14 08:38:07 -0400
committerMatthias Clasen <mclasen@redhat.com>2010-05-14 08:38:07 -0400
commit1d22b64843c83631bcd0e5255930f3a4e990961e (patch)
tree6874d1ba4ec95b86ecc0086905c3d07f9ac24d35 /gio/gdbusauth.c
parent054079899128cfc4a9e50a3750d927724604eedb (diff)
Cleanups
Sort #includes a bit better, and don't include platform-specific headers in gio.h.
Diffstat (limited to 'gio/gdbusauth.c')
-rw-r--r--gio/gdbusauth.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/gio/gdbusauth.c b/gio/gdbusauth.c
index a94fcfa14..d46f32a5c 100644
--- a/gio/gdbusauth.c
+++ b/gio/gdbusauth.c
@@ -22,11 +22,14 @@
#include "config.h"
+#include <sys/types.h>
+#include <sys/socket.h>
+
#include "gdbusauth.h"
+
#include "gdbusauthmechanismanon.h"
#include "gdbusauthmechanismexternal.h"
#include "gdbusauthmechanismsha1.h"
-
#include "gdbusauthobserver.h"
#include "gdbuserror.h"
@@ -36,16 +39,14 @@
#include "gdbusprivate.h"
#ifdef G_OS_UNIX
-#include <gio/gunixconnection.h>
+#include "gunixconnection.h"
#include "gunixcredentialsmessage.h"
-#include <sys/types.h>
-#include <sys/socket.h>
#endif
#include "glibintl.h"
#include "gioalias.h"
-#define DEBUG_ENABLED 1
+#define DEBUG_ENABLED 0
static void
debug_print (const gchar *message, ...)