1/* status.c
2   Strings for status codes.  */
3
4#include "uucp.h"
5
6#include "uudefs.h"
7
8/* Status strings.  These must match enum tstatus_type.  */
9
10#if USE_TRADITIONAL_STATUS
11
12const char *azStatus[] =
13{
14  "SUCCESSFUL",
15  "DEVICE FAILED",
16  "DIAL FAILED",
17  "LOGIN FAILED",
18  "STARTUP FAILED",
19  "CONVERSATION FAILED",
20  "TALKING",
21  "WRONG TIME TO CALL"
22};
23
24#else
25
26const char *azStatus[] =
27{
28  "Conversation complete",
29  "Port unavailable",
30  "Dial failed",
31  "Login failed",
32  "Handshake failed",
33  "Call failed",
34  "Talking",
35  "Wrong time to call"
36};
37
38#endif
39