From e7d3e205d25893f83d80d047a8f73aa17a5e55d0 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Mon, 21 Feb 2022 10:39:58 -0600 Subject: [PATCH] chore: update links to rpc-spec.md --- CMakeLists.txt | 2 +- libtransmission/transmission.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 56061c6c3..e2c251e9f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -678,7 +678,7 @@ if(ENABLE_DAEMON OR ENABLE_GTK OR ENABLE_QT) endif() if(INSTALL_DOC) - install(FILES AUTHORS COPYING NEWS.md README.md extras/rpc-spec.md extras/send-email-when-torrent-done.sh DESTINATION ${CMAKE_INSTALL_DOCDIR}) + install(FILES AUTHORS COPYING NEWS.md README.md docs/rpc-spec.md extras/send-email-when-torrent-done.sh DESTINATION ${CMAKE_INSTALL_DOCDIR}) endif() if(MSVC AND ENABLE_DAEMON AND ENABLE_QT AND ENABLE_UTILS AND WITH_CRYPTO STREQUAL "openssl") diff --git a/libtransmission/transmission.h b/libtransmission/transmission.h index 7b8f6b75c..dc6b7a71b 100644 --- a/libtransmission/transmission.h +++ b/libtransmission/transmission.h @@ -314,7 +314,7 @@ bool tr_sessionIsIncompleteFileNamingEnabled(tr_session const* session); * @brief Set whether or not RPC calls are allowed in this session. * * @details If true, libtransmission will open a server socket to listen - * for incoming http RPC requests as described in extras/rpc-spec.md. + * for incoming http RPC requests as described in docs/rpc-spec.md. * * This is intially set by tr_sessionInit() and can be * queried by tr_sessionIsRPCEnabled().