diff options
author | djm@openbsd.org <djm@openbsd.org> | 2015-01-08 13:10:58 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-01-09 00:46:04 +1100 |
commit | c4bfafcc2a9300d9cfb3c15e75572d3a7d74670d (patch) | |
tree | 7c13042ab5e78c2552f5d35c90634e47f8c56071 /regress/unittests/sshkey | |
parent | e752c6d547036c602b89e9e704851463bd160e32 (diff) |
upstream commit
adjust for sshkey_load_file() API change
Diffstat (limited to 'regress/unittests/sshkey')
-rw-r--r-- | regress/unittests/sshkey/common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/unittests/sshkey/common.c b/regress/unittests/sshkey/common.c index 0a4b3a90c..b598f05cb 100644 --- a/regress/unittests/sshkey/common.c +++ b/regress/unittests/sshkey/common.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: common.c,v 1.1 2014/06/24 01:14:18 djm Exp $ */ | 1 | /* $OpenBSD: common.c,v 1.2 2015/01/08 13:10:58 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Helpers for key API tests | 3 | * Helpers for key API tests |
4 | * | 4 | * |
@@ -44,7 +44,7 @@ load_file(const char *name) | |||
44 | 44 | ||
45 | ASSERT_PTR_NE(ret = sshbuf_new(), NULL); | 45 | ASSERT_PTR_NE(ret = sshbuf_new(), NULL); |
46 | ASSERT_INT_NE(fd = open(test_data_file(name), O_RDONLY), -1); | 46 | ASSERT_INT_NE(fd = open(test_data_file(name), O_RDONLY), -1); |
47 | ASSERT_INT_EQ(sshkey_load_file(fd, name, ret), 0); | 47 | ASSERT_INT_EQ(sshkey_load_file(fd, ret), 0); |
48 | close(fd); | 48 | close(fd); |
49 | return ret; | 49 | return ret; |
50 | } | 50 | } |