summaryrefslogtreecommitdiff
path: root/src/copy.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-02-02 21:23:10 +0000
committerJim Meyering <jim@meyering.net>1997-02-02 21:23:10 +0000
commitc64a391bb27ae3b7933d41d8457d2d845d3a1100 (patch)
treedc62ef169d8b1193d8dbfa416dbcfc82dadbe5d2 /src/copy.h
parent1d286acd9a89364a54c09fd1addc8d87142e0bd2 (diff)
downloadcoreutils-c64a391bb27ae3b7933d41d8457d2d845d3a1100.tar.xz
.
Diffstat (limited to 'src/copy.h')
-rw-r--r--src/copy.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/copy.h b/src/copy.h
index 9199c776b..7bbe88d80 100644
--- a/src/copy.h
+++ b/src/copy.h
@@ -42,6 +42,9 @@ struct cp_options
with regular files. */
int interactive;
+ /* This process's effective user ID. */
+ uid_t myeuid;
+
/* If nonzero, when copying recursively, skip any subdirectories that are
on different filesystems from the one we started on. */
int one_file_system;
@@ -62,7 +65,7 @@ struct cp_options
int symbolic_link;
/* The bits to preserve in created files' modes. */
- int umask_kill;
+ unsigned int umask_kill;
/* If nonzero, do not copy a nondirectory that has an existing destination
with the same or newer modification time. */
@@ -71,9 +74,6 @@ struct cp_options
/* If nonzero, display the names of the files before copying them. */
int verbose;
- /* This process's effective user ID. */
- uid_t myeuid;
-
/* A pointer to either lstat or stat, depending on
whether the copy should dereference symlinks. */
int (*xstat) ();