Skip to content

Commit

Permalink
rpc: fix typo in error message
Browse files Browse the repository at this point in the history
Acked-by: Lea Morschel
Target: master
  • Loading branch information
kofemann committed Oct 19, 2020
1 parent f10a89b commit 3e86824
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2009 - 2019 Deutsches Elektronen-Synchroton,
* Copyright (c) 2009 - 2020 Deutsches Elektronen-Synchroton,
* Member of the Helmholtz Association, (DESY), HAMBURG, GERMANY
*
* This library is free software; you can redistribute it and/or modify
Expand Down Expand Up @@ -51,7 +51,7 @@ public static RpcAuth decode(XdrDecodingStream xdr, RpcTransport transport) thro
transport.startTLS();
break;
default:
throw new RpcAuthException("Unsuported type: " + authType,
throw new RpcAuthException("Unsupported type: " + authType,
new RpcAuthError(RpcAuthStat.AUTH_FAILED));
}
credential.xdrDecode(xdr);
Expand Down

0 comments on commit 3e86824

Please sign in to comment.