| 1678 | |
| 1679 | |
| 1680 | static void msg_get(USHORT number, TEXT* msg) |
| 1681 | { |
| 1682 | /************************************** |
| 1683 | * |
| 1684 | * m s g _ g e t |
| 1685 | * |
| 1686 | ************************************** |
| 1687 | * |
| 1688 | * Functional description |
| 1689 | * Retrieve a message from the error file |
| 1690 | * |
| 1691 | **************************************/ |
| 1692 | |
| 1693 | static const SafeArg dummy; |
| 1694 | fb_msg_format(NULL, GSEC_MSG_FAC, number, MSG_LENGTH, msg, dummy); |
| 1695 | } |
| 1696 | |
| 1697 | |
| 1698 | static void insert_error(ISC_STATUS* status, ISC_STATUS isc_err) |
no test coverage detected