From: <dg...@su...> - 2009-02-05 12:32:55
|
Author: bellmich Date: Thu Feb 5 12:30:29 2009 New Revision: 919 URL: http://libsyncml.opensync.org/changeset/919 Log: fixed wrong order of #ifdef and #endif Modified: trunk/tests/check_data_sync_api.c Modified: trunk/tests/check_data_sync_api.c ============================================================================== --- trunk/tests/check_data_sync_api.c Thu Feb 5 12:27:06 2009 (r918) +++ trunk/tests/check_data_sync_api.c Thu Feb 5 12:30:29 2009 (r919) @@ -242,8 +242,8 @@ if (!strcasecmp(transport_type, "OBEX")) { transport = "OBEX"; } -#ifdef ENABLE_HTTP #endif +#ifdef ENABLE_HTTP if (!strcasecmp(transport_type, "HTTP")) { transport = "HTTP"; } |