summaryrefslogtreecommitdiff
path: root/tests-clar/repo/init.c
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2012-11-29 20:06:23 -0800
committerBen Straub <bs@github.com>2012-11-30 13:12:15 -0800
commitb4d136527c2210f1abbcc53ab7290ad38029ab3c (patch)
tree7753fecb682417d37611a09fea8ef092fe70e894 /tests-clar/repo/init.c
parent9267ff586f29deb99f41ab6eeb0599917ddd0cec (diff)
downloadlibgit2-b4d136527c2210f1abbcc53ab7290ad38029ab3c.tar.gz
Deploy GIT_REPOSITORY_INIT_OPTIONS_INIT
Diffstat (limited to 'tests-clar/repo/init.c')
-rw-r--r--tests-clar/repo/init.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/tests-clar/repo/init.c b/tests-clar/repo/init.c
index 3b14c97f2..c0acbed5a 100644
--- a/tests-clar/repo/init.c
+++ b/tests-clar/repo/init.c
@@ -304,8 +304,7 @@ void test_repo_init__sets_logAllRefUpdates_according_to_type_of_repository(void)
void test_repo_init__extended_0(void)
{
- git_repository_init_options opts;
- memset(&opts, 0, sizeof(opts));
+ git_repository_init_options opts = GIT_REPOSITORY_INIT_OPTIONS_INIT;
/* without MKDIR this should fail */
cl_git_fail(git_repository_init_ext(&_repo, "extended", &opts));
@@ -327,8 +326,7 @@ void test_repo_init__extended_1(void)
git_reference *ref;
git_remote *remote;
struct stat st;
- git_repository_init_options opts;
- memset(&opts, 0, sizeof(opts));
+ git_repository_init_options opts = GIT_REPOSITORY_INIT_OPTIONS_INIT;
opts.flags = GIT_REPOSITORY_INIT_MKPATH |
GIT_REPOSITORY_INIT_NO_DOTGIT_DIR;
@@ -367,8 +365,7 @@ void test_repo_init__extended_1(void)
void test_repo_init__extended_with_template(void)
{
- git_repository_init_options opts;
- memset(&opts, 0, sizeof(opts));
+ git_repository_init_options opts = GIT_REPOSITORY_INIT_OPTIONS_INIT;
opts.flags = GIT_REPOSITORY_INIT_MKPATH | GIT_REPOSITORY_INIT_BARE;
opts.template_path = cl_fixture("template");