dde_rump: handle ENOENT error case

Related to #1687
This commit is contained in:
Alexander Boettcher 2015-09-17 13:35:16 +02:00 committed by Christian Helmuth
parent fd533b0c93
commit 6426d4098c
1 changed files with 2 additions and 1 deletions

View File

@ -343,9 +343,10 @@ class File_system::Session_component : public Session_rpc_object
switch (errno) {
case ENOTEMPTY: throw Node_already_exists();
case ENOENT: throw Lookup_failed();
}
PWRN("renameat produced unhandled error");
PWRN("renameat produced unhandled error %x %s %s", errno, from_str, to_str);
throw Permission_denied();
}