404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
|
/* Report on conflicts
*/
if( nConflict && !nochangeFlag ){
if( internalUpdate ){
internalConflictCnt = nConflict;
}else{
printf("WARNING: merge conflicts - see messages above for details.\n");
}
}
/*
** Clean up the mid and pid VFILE entries. Then commit the changes.
*/
if( nochangeFlag ){
|
|
>
|
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
|
/* Report on conflicts
*/
if( nConflict && !nochangeFlag ){
if( internalUpdate ){
internalConflictCnt = nConflict;
}else{
printf("WARNING: %d merge conflicts - see messages above for details.\n",
nConflict);
}
}
/*
** Clean up the mid and pid VFILE entries. Then commit the changes.
*/
if( nochangeFlag ){
|