diff --git a/obexd/src/main.c b/obexd/src/main.c
index ef894cf..14e7d16 100644
--- a/obexd/src/main.c
+++ b/obexd/src/main.c
"Enable File Transfer server" },
{ "pbap", 'p', 0, G_OPTION_ARG_NONE, &option_pbap,
"Enable Phonebook Access server" },
+ { "irmc", 'i', 0, G_OPTION_ARG_NONE, &option_irmc,
+ "Enable IrMC Sync server" },
{ "pcsuite", 's', 0, G_OPTION_ARG_NONE, &option_pcsuite,
"Enable PC Suite Services server" },
- { "irmc", 'i', 0, G_OPTION_ARG_NONE, &option_irmc,
- "Enable IrMCSync server" },
{ "syncevolution", 'e', 0, G_OPTION_ARG_NONE, &option_syncevolution,
"Enable OBEX server for SyncEvolution" },
{ NULL },
diff --git a/obexd/src/obex.h b/obexd/src/obex.h
index 35723ca..c3f6e3d 100644
--- a/obexd/src/obex.h
+++ b/obexd/src/obex.h
#define OBEX_FTP (1 << 2)
#define OBEX_BIP (1 << 3)
#define OBEX_PBAP (1 << 4)
-#define OBEX_PCSUITE (1 << 5)
-#define OBEX_IRMC (1 << 6)
+#define OBEX_IRMC (1 << 5)
+#define OBEX_PCSUITE (1 << 6)
#define OBEX_SYNCEVOLUTION (1 << 7)
#define TARGET_SIZE 16