xref: /plan9/sys/src/cmd/dossrv/errstr.h (revision 9a747e4fd48b9f4522c70c07e8f882a15030f964)
1 char *errmsg[ESIZE] = {
2 	[Enevermind]	"never mind",
3 	[Eformat]	"unknown format",
4 	[Eio]		"I/O error",
5 	[Enoauth]	"dossrv: authentication not required",
6 	[Enomem]	"server out of memory",
7 	[Enonexist]	"file does not exist",
8 	[Eperm]		"permission denied",
9 	[Enofilsys]	"no file system device specified",
10 	[Eauth]		"authentication failed",
11 	[Econtig]	"out of contiguous disk space",
12 	[Ebadfcall]	"bad fcall type",
13 	[Ebadstat]	"bad stat format",
14 	[Etoolong]	"file name too long",
15 	[Eversion]	"unknown 9P version",
16 	[Eerrstr]	"system call error",
17 };
18