Browse Source

Merge pull request #512 from D504/openssl

Remove unused assigning (success is assinged anyway)
pull/513/head
orignal 9 years ago committed by GitHub
parent
commit
a0f3e81b11
  1. 1
      AddressBook.cpp

1
AddressBook.cpp

@ -744,7 +744,6 @@ namespace client
LogPrint (eLogInfo, "Addressbook: received ", m_Link, " ETag: ", m_Etag, " Last-Modified: ", m_LastModified); LogPrint (eLogInfo, "Addressbook: received ", m_Link, " ETag: ", m_Etag, " Last-Modified: ", m_LastModified);
if (!response.eof () && !response.fail ()) if (!response.eof () && !response.fail ())
{ {
success = true;
if (!isChunked) if (!isChunked)
success = ProcessResponse (response, isGzip); success = ProcessResponse (response, isGzip);
else else

Loading…
Cancel
Save