Ignore:
Timestamp:
May 26, 2009, 4:27:55 PM (15 years ago)
Author:
Christoph Mayer
Message:

-einige fixed bzgl. link management, fehlerhafte serialisierer, etc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/utility/types/Identifier.cpp

    r3690 r3705  
    319319}
    320320bool Identifier::operator==(const Identifier& compKey) const {
    321         return compareTo(compKey) == 0;
     321
     322        if( this->isUnspecified() && compKey.isUnspecified() )
     323                return true;
     324        else
     325                return compareTo(compKey) == 0;
    322326}
    323327bool Identifier::operator!=(const Identifier& compKey) const {
     
    599603        //as mpn_random has no seeding function
    600604        // we mess aroung here a little to achive some randomness
    601         // using the rand function that _is_ seeded in the 
     605        // using the rand function that _is_ seeded in the
    602606        // StartupWrapper::initSystem function
    603607
Note: See TracChangeset for help on using the changeset viewer.