@@ -248,7 +248,8 @@ static int splice_tree(const struct object_id *oid1, const char *prefix,
248
248
* other hand, it could cover tree one and we might need to pick a
249
249
* subtree of it.
250
250
*/
251
- void shift_tree (const struct object_id * hash1 ,
251
+ void shift_tree (struct repository * r ,
252
+ const struct object_id * hash1 ,
252
253
const struct object_id * hash2 ,
253
254
struct object_id * shifted ,
254
255
int depth_limit )
@@ -290,7 +291,7 @@ void shift_tree(const struct object_id *hash1,
290
291
if (!* del_prefix )
291
292
return ;
292
293
293
- if (get_tree_entry (the_repository , hash2 , del_prefix , shifted , & mode ))
294
+ if (get_tree_entry (r , hash2 , del_prefix , shifted , & mode ))
294
295
die ("cannot find path %s in tree %s" ,
295
296
del_prefix , oid_to_hex (hash2 ));
296
297
return ;
@@ -307,7 +308,8 @@ void shift_tree(const struct object_id *hash1,
307
308
* Unfortunately we cannot fundamentally tell which one to
308
309
* be prefixed, as recursive merge can work in either direction.
309
310
*/
310
- void shift_tree_by (const struct object_id * hash1 ,
311
+ void shift_tree_by (struct repository * r ,
312
+ const struct object_id * hash1 ,
311
313
const struct object_id * hash2 ,
312
314
struct object_id * shifted ,
313
315
const char * shift_prefix )
@@ -317,12 +319,12 @@ void shift_tree_by(const struct object_id *hash1,
317
319
unsigned candidate = 0 ;
318
320
319
321
/* Can hash2 be a tree at shift_prefix in tree hash1? */
320
- if (!get_tree_entry (the_repository , hash1 , shift_prefix , & sub1 , & mode1 ) &&
322
+ if (!get_tree_entry (r , hash1 , shift_prefix , & sub1 , & mode1 ) &&
321
323
S_ISDIR (mode1 ))
322
324
candidate |= 1 ;
323
325
324
326
/* Can hash1 be a tree at shift_prefix in tree hash2? */
325
- if (!get_tree_entry (the_repository , hash2 , shift_prefix , & sub2 , & mode2 ) &&
327
+ if (!get_tree_entry (r , hash2 , shift_prefix , & sub2 , & mode2 ) &&
326
328
S_ISDIR (mode2 ))
327
329
candidate |= 2 ;
328
330
0 commit comments