From d1539775a087395637ca446850a55bce1367baad Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Fri, 14 Oct 2022 02:32:01 +0200 Subject: [PATCH] Fix a typo 'underlyinch' vs 'underlying'. Change-Id: Icc224eadb60cb6029caafdc9e9bb603638e57bce Signed-off-by: Robert Varga --- .../nettyutil/handler/ssh/client/AsyncSshHandlerWriter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/ssh/client/AsyncSshHandlerWriter.java b/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/ssh/client/AsyncSshHandlerWriter.java index d13d45a238..01284e308a 100644 --- a/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/ssh/client/AsyncSshHandlerWriter.java +++ b/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/ssh/client/AsyncSshHandlerWriter.java @@ -94,7 +94,7 @@ public final class AsyncSshHandlerWriter implements AutoCloseable { asyncIn.writeBuffer(toBuffer(byteBufMsg)).addListener(future -> { // synchronized block due to deadlock that happens on ssh window resize - // writes and pending writes would lock the underlyinch channel session + // writes and pending writes would lock the underlying channel session // window resize write would try to write the message on an already locked channelSession, // while the pending write was in progress from the write callback synchronized (asyncInLock) { -- 2.36.6