blob: 5c941d617447d8b46d06ac7944f3f7dbd3777fe4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/* $OpenBSD: percent_m.c,v 1.3 2004/05/31 10:39:08 otto Exp $ */
/*
* Replace %m by system error message.
*
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
#ifndef lint
#if 0
static char sccsid[] = "@(#) percent_m.c 1.1 94/12/28 17:42:37";
#else
static char rcsid[] = "$OpenBSD: percent_m.c,v 1.3 2004/05/31 10:39:08 otto Exp $";
#endif
#endif
#include <stdio.h>
#include <stdarg.h>
#include <errno.h>
#include <string.h>
#ifndef SYS_ERRLIST_DEFINED
extern char *sys_errlist[];
extern int sys_nerr;
#endif
char *percent_m(obuf, ibuf)
char *obuf;
char *ibuf;
{
char *bp = obuf;
char *cp = ibuf;
int len = BUFSIZ;
while ((*bp = *cp)) {
if (*cp == '%' && cp[1] == 'm') {
len = BUFSIZ - (bp - obuf);
if (errno < sys_nerr && errno > 0) {
strlcpy(bp, sys_errlist[errno], len);
} else {
snprintf(bp, len, "Unknown error %d", errno);
}
bp += strlen(bp);
cp += 2;
} else {
bp++, cp++;
}
}
return (obuf);
}
|