summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDebian CLI Applications Team <pkg-cli-apps-team@lists.alioth.debian.org>2017-01-10 17:35:29 +0100
committerJulian Taylor <jtaylor.debian@googlemail.com>2020-01-29 09:57:14 +0100
commitcde53c1169b71635b72189649a63273d820a9981 (patch)
tree834b4ea43559e05e1c09de726235634c239d4c3d
parent69aeffb1e0ad1bdec4ed3ba212be9f76bf92f050 (diff)
dont-display-as-dev-version
The debian key for signing the binaries is not the same as upstreams signig key. Gbp-Pq: Name dont-display-as-dev-version.patch
-rw-r--r--KeePass/Program.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/KeePass/Program.cs b/KeePass/Program.cs
index 7e5cd05..1cbbb2e 100644
--- a/KeePass/Program.cs
+++ b/KeePass/Program.cs
@@ -863,8 +863,7 @@ namespace KeePass
Assembly asm = typeof(Program).Assembly;
byte[] pk = asm.GetName().GetPublicKeyToken();
string strPk = MemUtil.ByteArrayToHexString(pk);
- Debug.Assert(string.IsNullOrEmpty(strPk) || (strPk.Length == 16));
- return string.Equals(strPk, "fed2ed7716aecf5c", StrUtil.CaseIgnoreCmp);
+ return true;
}
catch(Exception) { Debug.Assert(false); }