diff options
author | Jim Meyering <jim@meyering.net> | 2000-12-24 17:56:51 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-12-24 17:56:51 +0000 |
commit | c8b1db11d3452c9441adec62525b1ab8191e2a96 (patch) | |
tree | 018de549f422921456f26fda1804aab54d8c0819 | |
parent | 24ffc1a3c9e0ae003c6005a2bc107999620ab072 (diff) | |
download | coreutils-c8b1db11d3452c9441adec62525b1ab8191e2a96.tar.xz |
(main): Actually use the local variable, `backup_suffix_string'.
-rw-r--r-- | src/ln.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -511,6 +511,9 @@ main (int argc, char **argv) usage (1); } + if (backup_suffix_string) + simple_backup_suffix = xstrdup (backup_suffix_string); + backup_type = (make_backups ? xget_version (_("backup type"), version_control_string) : none); |