瀏覽代碼

Fix compile error with --disable-bittorrent

Tatsuhiro Tsujikawa 9 年之前
父節點
當前提交
8d30869966
共有 1 個文件被更改,包括 6 次插入1 次删除
  1. 6 1
      src/RequestGroup.cc

+ 6 - 1
src/RequestGroup.cc

@@ -1264,10 +1264,15 @@ void RequestGroup::enableSeedOnly()
   }
 }
 
-bool RequestGroup::isSeeder() const {
+bool RequestGroup::isSeeder() const
+{
+#ifdef ENABLE_BITTORRENT
   return downloadContext_->hasAttribute(CTX_ATTR_BT) &&
          !bittorrent::getTorrentAttrs(downloadContext_)->metadata.empty() &&
          downloadFinished();
+#else  // !ENABLE_BITTORRENT
+  return false;
+#endif // !ENABLE_BITTORRENT
 }
 
 } // namespace aria2