Skip to content
This repository has been archived by the owner on Dec 4, 2018. It is now read-only.

Commit

Permalink
CTR
Browse files Browse the repository at this point in the history
Correct typo in message name - followup to r1221282

git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc5.5.x/trunk@1224640 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Konstantin Kolinko committed Dec 25, 2011
1 parent bff9c02 commit 7a1cfb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.

parameters.bytes=Start processing with input [{0}]
paramerers.copyFail=Failed to create copy of original parameter values for debug logging purposes
parameters.copyFail=Failed to create copy of original parameter values for debug logging purposes
parameters.decodeFail.debug=Character decoding failed. Parameter [{0}] with value [{1}] has been ignored.
parameters.decodeFail.info=Character decoding failed. Parameter [{0}] with value [{1}] has been ignored. Note that the name and value quoted here may be corrupted due to the failed decoding. Use debug level logging to see the original, non-corrupted values.
parameters.invalidChunk=Invalid chunk starting at byte [{0}] and ending at byte [{1}] with a value of [{2}] ignored
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ private void processParameters(byte bytes[], int start, int len,
origValue.append(bytes, valueStart, valueEnd - valueStart);
} catch (IOException ioe) {
// Should never happen...
log.error(sm.getString("paramerers.copyFail"), ioe);
log.error(sm.getString("parameters.copyFail"), ioe);
}
}

Expand Down

0 comments on commit 7a1cfb6

Please sign in to comment.