summaryrefslogtreecommitdiff
path: root/net/libfetch/files/errlist.awk
blob: 720705cc3974039f9316894af3f668814b39d3c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
BEGIN {
	printf "static struct fetcherr %s[] = {\n", variable
}

/^#/	{ next }

{	printf "\t{ %d, FETCH_%s, \"%s\" },\n", $1, $2, $3 }

END {
	printf "\t{ -1, FETCH_UNKNOWN, \"Unknown %s error\" }\n", protocol
	printf "};\n"
}