Skip to content

Commit

Permalink
Fix typo in error message.
Browse files Browse the repository at this point in the history
`IO not allowd` -> `IO not allowed`
  • Loading branch information
dotphoton-ziad authored Sep 27, 2022
1 parent 8201185 commit e3ec271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/dcache/nfs/v4/OperationREAD.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void process(CompoundContext context, nfs_resop4 result) throws IOExcepti

int bytesReaded = context.getFs().read(context.currentInode(), buf, offset);
if (bytesReaded < 0) {
throw new NfsIoException("IO not allowd");
throw new NfsIoException("IO not allowed");
}

buf.flip();
Expand Down

0 comments on commit e3ec271

Please sign in to comment.