Merge branch 'bc/http-push-flagsfix'
The code to push changes over "dumb" HTTP had a bad interaction with the commit reachability code due to incorrect allocation of object flag bits, which has been corrected. * bc/http-push-flagsfix: http-push: ensure unforced pushes fail when data would be lost
This commit is contained in:
@ -70,10 +70,10 @@ enum XML_Status {
|
||||
#define LOCK_REFRESH 30
|
||||
|
||||
/* Remember to update object flag allocation in object.h */
|
||||
#define LOCAL (1u<<16)
|
||||
#define REMOTE (1u<<17)
|
||||
#define FETCHING (1u<<18)
|
||||
#define PUSHING (1u<<19)
|
||||
#define LOCAL (1u<<11)
|
||||
#define REMOTE (1u<<12)
|
||||
#define FETCHING (1u<<13)
|
||||
#define PUSHING (1u<<14)
|
||||
|
||||
/* We allow "recursive" symbolic refs. Only within reason, though */
|
||||
#define MAXDEPTH 5
|
||||
|
Reference in New Issue
Block a user