Show
Ignore:
Timestamp:
04/08/07 08:36:57 (6 years ago)
Author:
balister
Message:

Compiles again, but segfaults in SPD Parser.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ossie/trunk/ossie/parser/SPDParser.cpp

    r3353 r3356  
    210210bool SPDParser::isScaCompliant() 
    211211{ 
    212         if(softPkgType == SPDParser::SCA_COMPLIANT) return true; 
    213         else return false; 
     212    if(softPkgType == "sca_compliant") 
     213        return true; 
     214    else 
     215        return false; 
    214216} 
    215217 
     
    217219bool SPDParser::isScaNonCompliant() 
    218220{ 
    219         if(softPkgType == SPDParser::SCA_NON_COMPLIANT) return true; 
    220         else return false; 
     221    if(softPkgType == "sca_non_compliant") 
     222        return true; 
     223    else 
     224        return false; 
    221225} 
    222226