Connor McAdams : secur32: Fix trace in schannel pull_adapter function.

Alexandre Julliard julliard at winehq.org
Thu Jan 27 15:36:19 CST 2022


Module: wine
Branch: master
Commit: 85cb1ff91ed4d48559c5500e2ccb0b15801edc05
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=85cb1ff91ed4d48559c5500e2ccb0b15801edc05

Author: Connor McAdams <cmcadams at codeweavers.com>
Date:   Thu Jan 27 10:20:51 2022 -0500

secur32: Fix trace in schannel pull_adapter function.

Signed-off-by: Connor McAdams <cmcadams at codeweavers.com>
Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/secur32/schannel_gnutls.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/secur32/schannel_gnutls.c b/dlls/secur32/schannel_gnutls.c
index 3f947870a73..b7ffa1822b5 100644
--- a/dlls/secur32/schannel_gnutls.c
+++ b/dlls/secur32/schannel_gnutls.c
@@ -372,7 +372,7 @@ static ssize_t pull_adapter(gnutls_transport_ptr_t transport, void *buff, size_t
     SIZE_T len = buff_len;
     char *b;
 
-    TRACE("Push %lu bytes\n", len);
+    TRACE("Pull %lu bytes\n", len);
 
     b = get_buffer(t, &t->in, &len);
     if (!b)
@@ -382,7 +382,7 @@ static ssize_t pull_adapter(gnutls_transport_ptr_t transport, void *buff, size_t
     }
     memcpy(buff, b, len);
     t->in.offset += len;
-    TRACE("Wrote %lu bytes\n", len);
+    TRACE("Read %lu bytes\n", len);
     return len;
 }
 




More information about the wine-cvs mailing list