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

Collapse All | Expand All

(-)tar-1.25.orig/src/extract.c (-6 / +6 lines)
Lines 1002-1013 Link Here
1002
  if (to_stdout_option)
1002
  if (to_stdout_option)
1003
    return 0;
1003
    return 0;
1004
1004
1005
  if (! to_command_option)
1006
    set_stat (file_name, &current_stat_info, fd,
1007
	      current_mode, current_mode_mask, typeflag, false,
1008
	      (old_files_option == OVERWRITE_OLD_FILES
1009
	       ? 0 : AT_SYMLINK_NOFOLLOW));
1010
1011
  status = close (fd);
1005
  status = close (fd);
1012
  if (status < 0)
1006
  if (status < 0)
1013
    close_error (file_name);
1007
    close_error (file_name);
Lines 1015-1020 Link Here
1015
  if (to_command_option)
1009
  if (to_command_option)
1016
    sys_wait_command ();
1010
    sys_wait_command ();
1017
1011
1012
  if (! to_command_option)
1013
    set_stat (file_name, &current_stat_info, -1,
1014
	      current_mode, current_mode_mask, typeflag, false,
1015
	      (old_files_option == OVERWRITE_OLD_FILES
1016
	       ? 0 : AT_SYMLINK_NOFOLLOW));
1017
1018
  return status;
1018
  return status;
1019
}
1019
}
1020
1020

Return to bug 352254