Skip to content

Commit e3ec271

Browse files
Fix typo in error message.
`IO not allowd` -> `IO not allowed`
1 parent 8201185 commit e3ec271

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/dcache/nfs/v4/OperationREAD.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public void process(CompoundContext context, nfs_resop4 result) throws IOExcepti
7575

7676
int bytesReaded = context.getFs().read(context.currentInode(), buf, offset);
7777
if (bytesReaded < 0) {
78-
throw new NfsIoException("IO not allowd");
78+
throw new NfsIoException("IO not allowed");
7979
}
8080

8181
buf.flip();

0 commit comments

Comments
 (0)