Pathmaker Programming Guide
Modifying a Server Skeleton or Service Skeleton
Advanced Pathmaker Programming Topics
067868 Tandem Computers Incorporated 9–37
Reformatting Existing Error Messages for C Servers in PMSVCULC
You can reformat any of the existing error messages used for C servers in the common
service utility library file, PMSVCULC, if you do not change the size of the fields or
any of the field names.
The following example lists the portion of the lfe_advisory function in the PMSVCULC
file that you can change to reformat a message:
.
.
.
sprintf ( message, "File error %hd, %s, on %s",
file->errcode, advisory_phrase [i].phrase,
*file->logicalname ? file->logicalname :
file->physicalname );
.
.
.