diff options
Diffstat (limited to 'net/9p/error.c')
-rw-r--r-- | net/9p/error.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/9p/error.c b/net/9p/error.c index 388770c3631e..fdebe4314062 100644 --- a/net/9p/error.c +++ b/net/9p/error.c | |||
@@ -237,8 +237,8 @@ int p9_errstr2errno(char *errstr, int len) | |||
237 | if (errno == 0) { | 237 | if (errno == 0) { |
238 | /* TODO: if error isn't found, add it dynamically */ | 238 | /* TODO: if error isn't found, add it dynamically */ |
239 | errstr[len] = 0; | 239 | errstr[len] = 0; |
240 | printk(KERN_ERR "%s: errstr :%s: not found\n", __func__, | 240 | printk(KERN_ERR "%s: server reported unknown error %s\n", |
241 | errstr); | 241 | __func__, errstr); |
242 | errno = 1; | 242 | errno = 1; |
243 | } | 243 | } |
244 | 244 | ||