Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
aceac672
Commit
aceac672
authored
Feb 08, 2022
by
Colin Stolley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename prepare_pack() to git_packbuilder__prepare()
parent
91775854
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/pack-objects.c
+2
-2
src/transports/smart_protocol.c
+1
-1
No files found.
src/pack-objects.c
View file @
aceac672
...
...
@@ -1308,7 +1308,7 @@ static int ll_find_deltas(git_packbuilder *pb, git_pobject **list,
#define ll_find_deltas(pb, l, ls, w, d) find_deltas(pb, l, &ls, w, d)
#endif
int
prepare_pack
(
git_packbuilder
*
pb
)
int
git_packbuilder__prepare
(
git_packbuilder
*
pb
)
{
git_pobject
**
delta_list
;
size_t
i
,
n
=
0
;
...
...
@@ -1353,7 +1353,7 @@ int prepare_pack(git_packbuilder *pb)
return
0
;
}
#define PREPARE_PACK if (
prepare_pack
(pb) < 0) { return -1; }
#define PREPARE_PACK if (
git_packbuilder__prepare
(pb) < 0) { return -1; }
int
git_packbuilder_foreach
(
git_packbuilder
*
pb
,
int
(
*
cb
)(
void
*
buf
,
size_t
size
,
void
*
payload
),
void
*
payload
)
{
...
...
src/transports/smart_protocol.c
View file @
aceac672
...
...
@@ -1035,7 +1035,7 @@ int git_smart__push(git_transport *transport, git_push *push, const git_remote_c
}
/* prepare pack before sending pack header to avoid timeouts */
if
(
need_pack
&&
((
error
=
prepare_pack
(
push
->
pb
)))
<
0
)
if
(
need_pack
&&
((
error
=
git_packbuilder__prepare
(
push
->
pb
)))
<
0
)
goto
done
;
if
((
error
=
git_smart__get_push_stream
(
t
,
&
packbuilder_payload
.
stream
))
<
0
||
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment