afsconfig-and-rcsid-all-around-20010705
[openafs.git] / src / rsh / herror.c
1 /*
2  * Copyright (c) 1987 Regents of the University of California.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that the above copyright notice and this paragraph are
7  * duplicated in all such forms and that any documentation,
8  * advertising materials, and other materials related to such
9  * distribution and use acknowledge that the software was developed
10  * by the University of California, Berkeley.  The name of the
11  * University may not be used to endorse or promote products derived
12  * from this software without specific prior written permission.
13  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16  */
17
18 #include <afs/param.h>
19 #include <afsconfig.h>
20
21 RCSID("$Header$");
22
23 #ifndef AFS_DARWIN_ENV
24 #include <sys/types.h>
25 #include <sys/uio.h>
26
27 char    *h_errlist[] = {
28         "Error 0",
29         "Unknown host",                         /* 1 HOST_NOT_FOUND */
30         "Host name lookup failure",             /* 2 TRY_AGAIN */
31         "Unknown server error",                 /* 3 NO_RECOVERY */
32         "No address associated with name",      /* 4 NO_ADDRESS */
33 };
34 int     h_nerr = { sizeof(h_errlist)/sizeof(h_errlist[0]) };
35
36 #if defined(AFS_SUN_ENV)
37 int h_errno;
38 #else
39 extern int      h_errno;
40 #endif
41
42 /*
43  * herror --
44  *      print the error indicated by the h_errno value.
45  */
46 herror(s)
47         char *s;
48 {
49         struct iovec iov[4];
50         register struct iovec *v = iov;
51
52         if (s && *s) {
53                 v->iov_base = s;
54                 v->iov_len = strlen(s);
55                 v++;
56                 v->iov_base = ": ";
57                 v->iov_len = 2;
58                 v++;
59         }
60         v->iov_base = (u_int)h_errno < h_nerr ?
61             h_errlist[h_errno] : "Unknown error";
62         v->iov_len = strlen(v->iov_base);
63         v++;
64         v->iov_base = "\n";
65         v->iov_len = 1;
66         writev(2, iov, (v - iov) + 1);
67 }
68 #endif