forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net-analyzer/sslsniff: revision bump
Add subslot to dev-libs/log4cpp dependency, add slot to dev-libs/openssl dependency, reorganize src_prepare and src_install functions. Fix building. Drop old revision Gentoo-Bug: 514792 Package-Manager: portage-2.2.26
- Loading branch information
Showing
2 changed files
with
66 additions
and
13 deletions.
There are no files selected for viewing
50 changes: 50 additions & 0 deletions
50
net-analyzer/sslsniff/files/sslsniff-0.8-error-redefinition.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- SSLConnectionManager.cpp.orig 2014-09-01 23:09:35.916376510 +0200 | ||
+++ SSLConnectionManager.cpp 2014-09-01 23:10:32.492515988 +0200 | ||
@@ -95,13 +95,13 @@ | ||
} catch (SSLConnectionError &error) { | ||
std::stringstream errorStream; | ||
errorStream << "Got exception: " << error.what(); | ||
- std::string error = errorStream.str(); | ||
- Logger::logError(error); | ||
+ std::string errorStr = errorStream.str(); | ||
+ Logger::logError(errorStr); | ||
} catch (FirefoxUpdateException &error) { | ||
std::stringstream errorStream; | ||
errorStream << "Got exception: " << error.what(); | ||
- std::string error = errorStream.str(); | ||
- Logger::logError(error); | ||
+ std::string errorStr = errorStream.str(); | ||
+ Logger::logError(errorStr); | ||
} | ||
} | ||
|
||
@@ -120,13 +120,13 @@ | ||
} catch (SSLConnectionError &error) { | ||
std::stringstream errorStream; | ||
errorStream << "Got exception: " << error.what(); | ||
- std::string error = errorStream.str(); | ||
- Logger::logError(error); | ||
+ std::string errorStr = errorStream.str(); | ||
+ Logger::logError(errorStr); | ||
} catch (FirefoxUpdateException &error) { | ||
std::stringstream errorStream; | ||
errorStream << "Got exception: " << error.what(); | ||
- std::string error = errorStream.str(); | ||
- Logger::logError(error); | ||
+ std::string errorStr = errorStream.str(); | ||
+ Logger::logError(errorStr); | ||
} | ||
} | ||
|
||
@@ -151,9 +151,9 @@ | ||
} catch (SSLConnectionError &error) { | ||
std::stringstream errorStream; | ||
errorStream << "Got exception: " << error.what(); | ||
- std::string error = errorStream.str(); | ||
+ std::string errorStr = errorStream.str(); | ||
|
||
- Logger::logError(error); | ||
+ Logger::logError(errorStr); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters