ports/net/transmission/patches/patch-cli_cli_cc

15 lines
556 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
PR 5424 - fix from upstream
Index: cli/cli.cc
--- cli/cli.cc.orig
+++ cli/cli.cc
@@ -257,7 +257,8 @@ int tr_main(int argc, char* argv[])
tr_ctorSetPaused(ctor, TR_FORCE, false);
- if (tr_ctorSetMetainfoFromFile(ctor, torrentPath, nullptr) || tr_ctorSetMetainfoFromMagnetLink(ctor, torrentPath, nullptr))
+ if (tr_sys_path_exists(torrentPath) ? tr_ctorSetMetainfoFromFile(ctor, torrentPath, nullptr) :
+ tr_ctorSetMetainfoFromMagnetLink(ctor, torrentPath, nullptr))
{
// all good
}