From 5bf680a1cf235fd83bfac0d41bdfca3e3dbfa281 Mon Sep 17 00:00:00 2001 From: Andrey Prygunkov Date: Fri, 9 Oct 2009 20:18:30 +0000 Subject: [PATCH] eliminated few compiler warnings on GCC --- RemoteClient.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/RemoteClient.cpp b/RemoteClient.cpp index c0a7235a..aa24aab3 100644 --- a/RemoteClient.cpp +++ b/RemoteClient.cpp @@ -1046,9 +1046,6 @@ bool RemoteClient::RequestHistory() SNZBHistoryResponseEntry* pListAnswer = (SNZBHistoryResponseEntry*) pBufPtr; const char* szFileName = pBufPtr + sizeof(SNZBHistoryResponseEntry); - const char* szDestDir = pBufPtr + sizeof(SNZBHistoryResponseEntry) + ntohl(pListAnswer->m_iFilenameLen); - const char* szCategory = pBufPtr + sizeof(SNZBHistoryResponseEntry) + ntohl(pListAnswer->m_iFilenameLen) + ntohl(pListAnswer->m_iDestDirLen); - const char* m_szQueuedFilename = pBufPtr + sizeof(SNZBHistoryResponseEntry) + ntohl(pListAnswer->m_iFilenameLen) + ntohl(pListAnswer->m_iDestDirLen) + ntohl(pListAnswer->m_iCategoryLen); long long lSize = Util::JoinInt64(ntohl(pListAnswer->m_iSizeHi), ntohl(pListAnswer->m_iSizeLo));