From: Kidong L. <bri...@us...> - 2004-06-04 01:16:53
|
Update of /cvsroot/syncml-ctoolkit/toolkit/src/xpt/bindings/obex/smlobex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6337/bindings/obex/smlobex Modified Files: inetTransport.c Log Message: Changed meta info value entry "Host" -> "HOST", "Port" -> "PORT" in iobxInetTransportInitialize() according to documentation. Index: inetTransport.c =================================================================== RCS file: /cvsroot/syncml-ctoolkit/toolkit/src/xpt/bindings/obex/smlobex/inetTransport.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** inetTransport.c 24 May 2004 01:33:46 -0000 1.4 --- inetTransport.c 4 Jun 2004 01:16:40 -0000 1.5 *************** *** 82,86 **** ** Port? */ ! p = iobxGetMetaInfoValue( meta, "Port", &len ); if ( !p || len > 5 ) { obxMeta.port = OBEX_PORT; /* let it default */ --- 82,86 ---- ** Port? */ ! p = iobxGetMetaInfoValue( meta, "PORT", &len ); if ( !p || len > 5 ) { obxMeta.port = OBEX_PORT; /* let it default */ *************** *** 102,106 **** */ if ( rc == OBX_RC_OK ) { ! p = iobxGetMetaInfoValue( meta, "Host", &len ); if ( !p ) { // %%% Calin: There may be no Host assigned, like when be a OBEX server. --- 102,106 ---- */ if ( rc == OBX_RC_OK ) { ! p = iobxGetMetaInfoValue( meta, "HOST", &len ); if ( !p ) { // %%% Calin: There may be no Host assigned, like when be a OBEX server. |