Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 651294 | Differences between
and this patch

Collapse All | Expand All

(-)a/afio.c (-5 / +3 lines)
Lines 3724-3730 Link Here
3724
	
3724
	
3725
	/* ASX check if file changed between the begining 
3725
	/* ASX check if file changed between the begining 
3726
	   and end of the backup */
3726
	   and end of the backup */
3727
	if (*fsname)
3727
        /* if *fsname==0, it was a control file, so do not check then */
3728
	if (*fsname!=0)
3728
	{
3729
	{
3729
	    struct stat st;
3730
	    struct stat st;
3730
	    /* I must check fsname ! 
3731
	    /* I must check fsname ! 
Lines 3739-3751 Link Here
3739
	        if (st.st_mtime!=sb.sb_mtime)
3740
	        if (st.st_mtime!=sb.sb_mtime)
3740
	        {
3741
	        {
3741
	            warn (fsname, "File was modified during its backup");
3742
	            warn (fsname, "File was modified during its backup");
3743
		    if(index(ignorewarnings,(int)'d')) warnings--;
3742
	        }
3744
	        }
3743
	    }
3745
	    }
3744
	}
3746
	}
3745
	else
3746
	{
3747
	    warn (name, "ASX no fsname for this name ??");
3748
        }
3749
	
3747
	
3750
	if(aflag && *fsname && ((sb.sb_mode & S_IFMT)==S_IFREG))
3748
	if(aflag && *fsname && ((sb.sb_mode & S_IFMT)==S_IFREG))
3751
	{
3749
	{

Return to bug 651294