aboutsummaryrefslogtreecommitdiffstats
path: root/src/gpg/result_analyse/SignResultAnalyse.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-06-08 20:27:52 +0000
committerSaturneric <[email protected]>2021-06-08 20:27:52 +0000
commitf7982062557831921d73227239b3b871348c77c0 (patch)
tree4b6b52ce96a91851904787358501c58189c42ffd /src/gpg/result_analyse/SignResultAnalyse.cpp
parentCheck whether the key can be encrypted before the encryption operation. (diff)
downloadGpgFrontend-f7982062557831921d73227239b3b871348c77c0.tar.gz
GpgFrontend-f7982062557831921d73227239b3b871348c77c0.zip
Adjust the output of analysis results.
Fix the problem. Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to '')
-rw-r--r--src/gpg/result_analyse/SignResultAnalyse.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpg/result_analyse/SignResultAnalyse.cpp b/src/gpg/result_analyse/SignResultAnalyse.cpp
index 9ef9dfec..eda95ff1 100644
--- a/src/gpg/result_analyse/SignResultAnalyse.cpp
+++ b/src/gpg/result_analyse/SignResultAnalyse.cpp
@@ -40,11 +40,11 @@ SignResultAnalyse::SignResultAnalyse(gpgme_error_t error, gpgme_sign_result_t re
stream << "> A New Signature: " << endl;
stream << "Sign mode: ";
- if(new_sign->type & GPGME_SIG_MODE_NORMAL)
+ if(new_sign->type == GPGME_SIG_MODE_NORMAL)
stream << "Normal";
- else if(new_sign->type & GPGME_SIG_MODE_CLEAR)
+ else if(new_sign->type == GPGME_SIG_MODE_CLEAR)
stream << "Clear";
- else if(new_sign->type & GPGME_SIG_MODE_DETACH)
+ else if(new_sign->type == GPGME_SIG_MODE_DETACH)
stream << "Detach";
stream << endl;