summaryrefslogtreecommitdiff
path: root/lib9p/srv.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib9p/srv.c')
-rw-r--r--lib9p/srv.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib9p/srv.c b/lib9p/srv.c
index 82b5257..e6a92ad 100644
--- a/lib9p/srv.c
+++ b/lib9p/srv.c
@@ -777,9 +777,9 @@ static void handle_Tattach(struct srv_req *ctx,
}
if (req->fid == LIB9P_FID_NOFID) {
- lib9p_error(&ctx->basectx,
- LINUX_EBADF, "cannot assign to NOFID");
- return;
+ lib9p_error(&ctx->basectx,
+ LINUX_EBADF, "cannot assign to NOFID");
+ return;
}
/* 1. File object */
@@ -820,9 +820,9 @@ static void handle_Twalk(struct srv_req *ctx,
srv_handler_common(ctx, req, resp);
if (req->newfid == LIB9P_FID_NOFID) {
- lib9p_error(&ctx->basectx,
- LINUX_EBADF, "cannot assign to NOFID");
- return;
+ lib9p_error(&ctx->basectx,
+ LINUX_EBADF, "cannot assign to NOFID");
+ return;
}
struct srv_fidinfo *fidinfo = map_load(&ctx->parent_sess->fids, req->fid);