home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / uucp / Uucp.framework / uucp.subproj / status.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-09  |  561 b   |  39 lines

  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.  
  12. const 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.  
  26. const 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.