diff options
author | Alex Musolino <alex@musolino.id.au> | 2023-03-12 08:18:39 +0000 |
---|---|---|
committer | Alex Musolino <alex@musolino.id.au> | 2023-03-12 08:18:39 +0000 |
commit | f5b78f452e48323484e6363d46a2aa631a956349 (patch) | |
tree | 4280c04ea8a3b21a7cd92c2726c2eacc2f6aa3c7 /sys/src/cmd/upas | |
parent | 82adfe54e258ed20d55fb6fd8505190b1e20aa0d (diff) |
imap4d: add entry to detect file locked errors on hjfs
Hjfs reports "file locked" whilst cwfs reports "file is locked".
This whole approach is a bit crappy, but this change will get
us (me) by for now.
Diffstat (limited to 'sys/src/cmd/upas')
-rw-r--r-- | sys/src/cmd/upas/imap4d/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/src/cmd/upas/imap4d/utils.c b/sys/src/cmd/upas/imap4d/utils.c index 893e68aae..608acf6e0 100644 --- a/sys/src/cmd/upas/imap4d/utils.c +++ b/sys/src/cmd/upas/imap4d/utils.c @@ -87,6 +87,7 @@ imaptmp(void) static char *etab[] = { "not found", "does not exist", + "file locked", // hjfs "file is locked", "exclusive lock", "already exists", |