summaryrefslogtreecommitdiffstats
path: root/src/pki_crypto.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2011-08-15 18:44:45 +0200
committerAndreas Schneider <asn@cryptomilk.org>2011-08-15 18:48:08 +0200
commita983512678de0bce96218b75a1cfc6663e65f280 (patch)
treef79eba4d44596befd3ed884535ec900050f79dbb /src/pki_crypto.c
parentc77b23b32a550a3dd52b8d2c5b3d1b177126dc54 (diff)
downloadlibssh-a983512678de0bce96218b75a1cfc6663e65f280.tar.gz
libssh-a983512678de0bce96218b75a1cfc6663e65f280.tar.xz
libssh-a983512678de0bce96218b75a1cfc6663e65f280.zip
pki: Fix ssh_key_dup().
Diffstat (limited to 'src/pki_crypto.c')
-rw-r--r--src/pki_crypto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pki_crypto.c b/src/pki_crypto.c
index 763cb46..68d46b3 100644
--- a/src/pki_crypto.c
+++ b/src/pki_crypto.c
@@ -114,7 +114,7 @@ ssh_key pki_key_dup(const ssh_key key, int demote)
goto fail;
}
- if (!demote && (key->flags == SSH_KEY_FLAG_PRIVATE)) {
+ if (!demote && (key->flags & SSH_KEY_FLAG_PRIVATE)) {
new->dsa->priv_key = BN_dup(key->dsa->priv_key);
if (new->dsa->priv_key == NULL) {
goto fail;
@@ -149,7 +149,7 @@ ssh_key pki_key_dup(const ssh_key key, int demote)
goto fail;
}
- if (!demote && (key->flags == SSH_KEY_FLAG_PRIVATE)) {
+ if (!demote && (key->flags & SSH_KEY_FLAG_PRIVATE)) {
new->rsa->d = BN_dup(key->rsa->d);
if (new->rsa->d == NULL) {
goto fail;