Skip to content

Commit aa52a93

Browse files
committed
From @Thezork #1015
1 parent 7fbaa66 commit aa52a93

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

LibGit2Sharp/Core/GitSmartSubtransportRegistration.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ internal class GitSmartSubtransportRegistration
88
{
99
public IntPtr SubtransportCallback;
1010
public uint Rpc;
11+
public uint Param;
1112

1213
public delegate int create_callback(
1314
out IntPtr subtransport,
14-
IntPtr transport);
15+
IntPtr transport,
16+
IntPtr param);
1517
}
1618
}

LibGit2Sharp/SmartSubtransportRegistration.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ private static class EntryPoints
8080

8181
private static int Subtransport(
8282
out IntPtr subtransport,
83-
IntPtr transport)
83+
IntPtr transport,
84+
IntPtr payload)
8485
{
8586
subtransport = IntPtr.Zero;
8687

0 commit comments

Comments
 (0)