Ignore:
Timestamp:
2001-03-05T13:54:26+13:00 (23 years ago)
Author:
say1
Message:

integrated the new mico package. updated corba to 2.3.7. fixed the c++ corba code. added error messages in the first few calls in the corba protocol. misc corba fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/receptionist.cpp

    r1927 r2113  
    359359  while (protohere != protoend) {
    360360    assert ((*protohere).p != NULL);
     361    comerror_t err;
    361362    if ((*protohere).p != NULL)
    362       (*protohere).p->configure(key, cfgline);
     363      (*protohere).p->configure(key, cfgline, err);
    363364   
    364365    protohere++;
     
    472473  recptprotolistclass::iterator protoend = protocols.end ();
    473474  while (protohere != protoend) {
     475    comerror_t err;   
    474476    if (((*protohere).p == NULL) ||
    475     !(*protohere).p->init(logout)) return false;
     477    !(*protohere).p->init(err, logout)) return false;
    476478    protohere++;
    477479  }
Note: See TracChangeset for help on using the changeset viewer.