From: Jim Meyering Date: Thu, 22 Nov 2001 19:47:58 +0000 (+0000) Subject: (struct cp_options) [src_info]: New member. X-Git-Tag: FILEUTILS-4_1_2~26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=039ff08371a99ed7c60f4bcd0d0dc282e49f348b;p=thirdparty%2Fcoreutils.git (struct cp_options) [src_info]: New member. (src_info_init): Declare. --- diff --git a/src/copy.h b/src/copy.h index 0c88f7e7e7..eb13062b07 100644 --- a/src/copy.h +++ b/src/copy.h @@ -165,7 +165,10 @@ struct cp_options When renaming, it protects all non-directories. Use dest_info_init to initialize it, or set it to NULL to disable this feature. */ - struct hash_table *dest_info; + Hash_table *dest_info; + + /* FIXME */ + Hash_table *src_info; }; int stat (); @@ -198,5 +201,7 @@ copy PARAMS ((const char *src_path, const char *dst_path, void dest_info_init PARAMS ((struct cp_options *)); +void +src_info_init PARAMS ((struct cp_options *)); #endif