- Timestamp:
- May 26, 2009, 1:59:32 PM (17 years ago)
- Location:
- branches/cnb_branches/cnb_branch_20090301
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
Nebulous (modified) (1 prop)
-
Nebulous/nebclient (modified) (1 prop)
-
Nebulous/nebclient/src/soapC.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/cnb_branches/cnb_branch_20090301
- Property svn:mergeinfo changed
-
branches/cnb_branches/cnb_branch_20090301/Nebulous
-
Property svn:mergeinfo
set to (toggle deleted branches)
/branches/pap/Nebulous merged eligible /trunk/Nebulous merged eligible /branches/eam_branches/eam_branch_20090303/Nebulous 23158-23228 /branches/jhoblitt/Nebulous 2785-12604 /branches/pap_magic/Nebulous 24120-24173
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
branches/cnb_branches/cnb_branch_20090301/Nebulous/nebclient
-
Property svn:mergeinfo
set to (toggle deleted branches)
/branches/neb_distrib_20081210/Nebulous/nebclient merged eligible /branches/pap/Nebulous/nebclient merged eligible /trunk/Nebulous/nebclient merged eligible /branches/eam_branches/eam_branch_20090303/Nebulous/nebclient 23158-23228 /branches/jhoblitt/Nebulous/nebclient 2785-12604 /branches/pap_magic/Nebulous/nebclient 24120-24173
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
branches/cnb_branches/cnb_branch_20090301/Nebulous/nebclient/src/soapC.c
r23352 r24244 12 12 #endif 13 13 14 SOAP_SOURCE_STAMP("@(#) soapC.c ver 2.7.12 2009-0 3-05 21:11:05GMT")14 SOAP_SOURCE_STAMP("@(#) soapC.c ver 2.7.12 2009-04-20 22:15:22 GMT") 15 15 16 16 … … 1344 1344 { 1345 1345 (void)soap; (void)a; /* appease -Wall -Werror */ 1346 soap_default_string(soap, &a->key); 1346 1347 soap_default_string(soap, &a->uri); 1347 1348 } … … 1350 1351 { 1351 1352 (void)soap; (void)a; /* appease -Wall -Werror */ 1353 soap_serialize_string(soap, &a->key); 1352 1354 soap_serialize_string(soap, &a->uri); 1353 1355 } … … 1365 1367 if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ns1__delete_USCOREinstance), type)) 1366 1368 return soap->error; 1369 if (soap_out_string(soap, "key", -1, &a->key, "")) 1370 return soap->error; 1367 1371 if (soap_out_string(soap, "uri", -1, &a->uri, "")) 1368 1372 return soap->error; … … 1380 1384 SOAP_FMAC3 struct ns1__delete_USCOREinstance * SOAP_FMAC4 soap_in_ns1__delete_USCOREinstance(struct soap *soap, const char *tag, struct ns1__delete_USCOREinstance *a, const char *type) 1381 1385 { 1386 size_t soap_flag_key = 1; 1382 1387 size_t soap_flag_uri = 1; 1383 1388 if (soap_element_begin_in(soap, tag, 0, type)) … … 1391 1396 for (;;) 1392 1397 { soap->error = SOAP_TAG_MISMATCH; 1398 if (soap_flag_key && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) 1399 if (soap_in_string(soap, "key", &a->key, "xsd:string")) 1400 { soap_flag_key--; 1401 continue; 1402 } 1393 1403 if (soap_flag_uri && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) 1394 1404 if (soap_in_string(soap, "uri", &a->uri, "xsd:string"))
Note:
See TracChangeset
for help on using the changeset viewer.
