From 0515958d257e248c70250ce7b4a76879eff59983 Mon Sep 17 00:00:00 2001 From: Martin Marmsoler Date: Sat, 10 Dec 2022 17:23:48 +0100 Subject: [PATCH] comment out for now --- test/SshConfig.cpp | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/test/SshConfig.cpp b/test/SshConfig.cpp index d01cfea5f..13e7c1b18 100644 --- a/test/SshConfig.cpp +++ b/test/SshConfig.cpp @@ -39,16 +39,10 @@ private slots: private: static QString transformUrl(const QString &url, const QString config) { auto callbacks = Callbacks(url, config); - git_buf buf; - buf.asize = 0; - buf.size = 0; - buf.ptr = nullptr; - Callbacks::url(&buf, url.toUtf8().data(), 0, &callbacks); - - QString res = QString::fromUtf8(buf.ptr, (int)buf.size); - git_buf_dispose(&buf); - return res; + //git::Remote remote(); + //Callbacks::remoteReady(*remote, 0, &callbacks); + return ""; // remote.url(); } };