Changeset 5624 for source/ariba/communication/BaseCommunication.cpp
- Timestamp:
- Aug 3, 2009, 2:29:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/communication/BaseCommunication.cpp
r5618 r5624 244 244 } else { 245 245 LinkDescriptor& linkDesc = queryLocalLink(link); 246 if (linkDesc.isUnspecified()) return EndpointDescriptor::UNSPECIFIED ;246 if (linkDesc.isUnspecified()) return EndpointDescriptor::UNSPECIFIED(); 247 247 return linkDesc.remoteEndpoint; 248 248 } … … 534 534 if (linkSet[i]->localLink == link) return (LinkDescriptor&)*linkSet[i]; 535 535 536 LinkDescriptor ret; 537 ret.unspecified = true; 538 return ret; 536 return LinkDescriptor::UNSPECIFIED(); 539 537 } 540 538 … … 544 542 if (linkSet[i]->remoteLink == link) return (LinkDescriptor&)*linkSet[i]; 545 543 546 LinkDescriptor ret; 547 ret.unspecified = true; 548 return ret; 544 return LinkDescriptor::UNSPECIFIED(); 549 545 } 550 546
Note:
See TracChangeset
for help on using the changeset viewer.