1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
|
if( (syncFlags & (SYNC_PUSH|SYNC_PULL|SYNC_CLONE|SYNC_UNVERSIONED))==0
&& configRcvMask==0
&& configSendMask==0
){
return 0; /* Nothing to do */
}
if( (syncFlags & SYNC_CLONE)==0 && db_get_int("aux-clone-seqno",0) ){
fossil_fatal("Unable to synchronize due to incomplete clone.");
}else{
cloneSeqno = db_get_int("aux-clone-seqno",1);
}
/* Compute an appropriate project code. zPCode is the project code
** for the local repository. zAltPCode will usually be NULL, but might
|
|
|
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
|
if( (syncFlags & (SYNC_PUSH|SYNC_PULL|SYNC_CLONE|SYNC_UNVERSIONED))==0
&& configRcvMask==0
&& configSendMask==0
){
return 0; /* Nothing to do */
}
if( (syncFlags & SYNC_CLONE)==0 && db_get_int("aux-clone-seqno",0)>0 ){
fossil_fatal("Unable to synchronize due to incomplete clone.");
}else{
cloneSeqno = db_get_int("aux-clone-seqno",1);
}
/* Compute an appropriate project code. zPCode is the project code
** for the local repository. zAltPCode will usually be NULL, but might
|