]> git.proxmox.com Git - libgit2.git/commitdiff
Fix broken online push tests
authorJameson Miller <jamill@microsoft.com>
Wed, 2 Oct 2013 19:10:39 +0000 (15:10 -0400)
committerJameson Miller <jamill@microsoft.com>
Wed, 2 Oct 2013 19:19:40 +0000 (15:19 -0400)
tests-clar/online/push.c

index dabeb2c879cd9982fde1b3ab91178b6d12468dd5..cef39595c2c6e8af53d4e4139c12a72fd05f29ae 100644 (file)
@@ -20,7 +20,6 @@ static char *_remote_pass;
 static int cred_acquire_cb(git_cred **,        const char *, const char *, unsigned int, void *);
 
 static git_remote *_remote;
-static bool _cred_acquire_called;
 static record_callbacks_data _record_cbs_data = {{ 0 }};
 static git_remote_callbacks _record_cbs = RECORD_CALLBACKS_INIT(&_record_cbs_data);
 
@@ -47,8 +46,6 @@ static int cred_acquire_cb(
        GIT_UNUSED(url);
        GIT_UNUSED(user_from_url);
 
-       *((bool*)payload) = true;
-
        if (GIT_CREDTYPE_SSH_PUBLICKEY & allowed_types)
                return git_cred_ssh_keyfile_passphrase_new(cred, _remote_user, _remote_ssh_pubkey, _remote_ssh_key, _remote_ssh_passphrase);
 
@@ -251,7 +248,6 @@ void test_online_push__initialize(void)
        git_vector delete_specs = GIT_VECTOR_INIT;
        size_t i;
        char *curr_del_spec;
-       _cred_acquire_called = false;
 
        _repo = cl_git_sandbox_init("push_src");