From e33cf832d96a907deabb0cd1bf80860e8043ede5 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Thu, 19 Aug 2010 20:03:38 +0200 Subject: [PATCH] obexd: Sort IrMC after PBAP --- obexd/src/main.c | 4 ++-- obexd/src/obex.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/obexd/src/main.c b/obexd/src/main.c index ef894cf38..14e7d16e1 100644 --- a/obexd/src/main.c +++ b/obexd/src/main.c @@ -119,10 +119,10 @@ static GOptionEntry options[] = { "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 35723ca84..c3f6e3dc7 100644 --- a/obexd/src/obex.h +++ b/obexd/src/obex.h @@ -33,8 +33,8 @@ #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 -- 2.47.3