diff options
author | Jim Meyering <jim@meyering.net> | 2004-05-29 22:07:03 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-05-29 22:07:03 +0000 |
commit | e6a2492833afc4ee5efd7831acc83ebc18175dbb (patch) | |
tree | 247870b78cde8908c5e3134ade183d5956a5bb6c | |
parent | 56d5c6f7cadcd5f0088d8b563434948d0b2a898c (diff) | |
download | coreutils-e6a2492833afc4ee5efd7831acc83ebc18175dbb.tar.xz |
(rm_option_init): Initialize new member,
-rw-r--r-- | src/rm.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -152,6 +152,10 @@ rm_option_init (struct rm_options *x) x->root_dev_ino = NULL; x->stdin_tty = isatty (STDIN_FILENO); x->verbose = 0; + + /* Since this program exits immediately after calling `rm', rm need not + expend unnecessary effort to preserve the initial working directory. */ + x->require_restore_cwd = false; } int |