Commit b2e4811d authored by Wayne Davison's avatar Wayne Davison

Changed two more references to "st" to "real_st" in the dir-handling

code.
parent b467495c
......@@ -1026,10 +1026,10 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx,
&& verbose && code != FNONE && f_out != -1)
rprintf(code, "%s/\n", fname);
if (real_ret != 0 && one_file_system)
st.st_dev = filesystem_dev;
real_st.st_dev = filesystem_dev;
if (delete_during && f_out != -1 && !phase && dry_run < 2
&& (file->flags & FLAG_DEL_HERE))
delete_in_dir(the_file_list, fname, file, &st);
delete_in_dir(the_file_list, fname, file, &real_st);
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment