X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fcommon.h;h=a376160e4d10340528e3ffd18e92a7ebf2af436d;hb=7347b4f5d51c15bb19637ea52e9bf7dff832cc52;hp=152ff180ed0e2e7aa5cb44d10ac865ede664243a;hpb=e3bd2a63a62aede213fe3b451952c254b095090d;p=chaz%2Ftar diff --git a/src/common.h b/src/common.h index 152ff18..a376160 100644 --- a/src/common.h +++ b/src/common.h @@ -38,11 +38,6 @@ /* Some various global definitions. */ /* Name of file to use for interacting with user. */ -#if MSDOS -# define TTY_NAME "con" -#else -# define TTY_NAME "/dev/tty" -#endif /* GLOBAL is defined to empty in tar.c only, and left alone in other *.c modules. Here, we merely set it to "extern" if it is not already set. @@ -163,8 +158,6 @@ GLOBAL struct exclude *excluded; /* Specified file containing names to work on. */ GLOBAL const char *files_from_option; -GLOBAL bool force_local_option; - /* Specified value to be put into tar file in place of stat () results, or just -1 if such an override should not take place. */ GLOBAL gid_t group_option; @@ -678,13 +671,10 @@ bool sys_compare_gid (struct stat *a, struct stat *b); bool sys_file_is_archive (struct tar_stat_info *p); bool sys_compare_links (struct stat *link_data, struct stat *stat_data); int sys_truncate (int fd); -void sys_reset_uid_gid (void); pid_t sys_child_open_for_compress (void); pid_t sys_child_open_for_uncompress (void); -void sys_reset_uid_gid (void); size_t sys_write_archive_buffer (void); bool sys_get_archive_stat (void); -void sys_reset_uid_gid (void); /* Module compare.c */ void report_difference (struct tar_stat_info *st, const char *message, ...);