|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T d
Length: 1602 (0x642) Types: TextFile Names: »dserr_prn.c«
└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« └─⟦d3ac74d73⟧ └─⟦this⟧ »isode-5.0/dsap/x500as/dserr_prn.c«
/* dserr_prn.c - ds error printer */ /* * NOTICE * * Acquisition, use, and distribution of this module and related * materials are subject to the restrictions of a license agreement. * Consult the Preface in the User's Manual for the full terms of * this agreement. * */ #include "psap.h" #include "quipu/util.h" #include "quipu/common.h" extern LLog * log_dsap; int print_OPError(pe, type) PE pe; int type; { int success; switch(type) { case DSE_NOERROR : success = NOTOK; break; case DSE_ABANDON_FAILED : success = print_DAS_AbandonFailedParm(pe,1,NULLIP,NULLVP,NULLCP); break; case DSE_ATTRIBUTEERROR : success = print_DAS_AttributeErrorParm(pe,1,NULLIP,NULLVP,NULLCP); break; case DSE_NAMEERROR : success = print_DAS_NameErrorParm(pe,1,NULLIP,NULLVP,NULLCP); break; case DSE_REFERRAL : success = print_DAS_ReferralParm(pe,1,NULLIP,NULLVP,NULLCP); break; case DSE_SECURITYERROR : success = print_DAS_SecurityErrorParm(pe,1,NULLIP,NULLVP,NULLCP); break; case DSE_SERVICEERROR : success = print_DAS_ServiceErrorParm(pe,1,NULLIP,NULLVP,NULLCP); break; case DSE_UPDATEERROR : success = print_DAS_UpdateErrorParm(pe,1,NULLIP,NULLVP,NULLCP); break; case DSE_ABANDONED : success = print_DAS_AbandonedParm(pe,1,NULLIP,NULLVP,NULLCP); break; case DSE_DSAREFERRAL : success = print_DO_DSAReferralParm(pe, 1, NULLIP, NULLVP,NULLCP); break; default : success = NOTOK; LLOG(log_dsap, LLOG_EXCEPTIONS, ("print_OPError unknown Error %d", type)); break; } return(success); }