diff options
Diffstat (limited to 'src/transports/smart.c')
-rw-r--r-- | src/transports/smart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transports/smart.c b/src/transports/smart.c index 69b9d22cc..85a49e543 100644 --- a/src/transports/smart.c +++ b/src/transports/smart.c @@ -409,7 +409,7 @@ int git_transport_smart(git_transport **out, git_remote *owner, void *param) return -1; } - if (definition->callback(&t->wrapped, &t->parent) < 0) { + if (definition->callback(&t->wrapped, &t->parent, definition->param) < 0) { git__free(t); return -1; } |