diff options
author | Andrew de Quincy <devnull@localhost> | 2004-08-26 18:26:27 +0000 |
---|---|---|
committer | Andrew de Quincy <devnull@localhost> | 2004-08-26 18:26:27 +0000 |
commit | c96f7f33f594e8de4f24c4992493be1697e87721 (patch) | |
tree | 3d239cd53d9e8d4ad4d8be04cba5d66c1ac9e7f5 | |
parent | 62525e8bd6a4a521756045e14978c17d80191ec0 (diff) | |
download | mediapointer-dvb-s2-c96f7f33f594e8de4f24c4992493be1697e87721.tar.gz mediapointer-dvb-s2-c96f7f33f594e8de4f24c4992493be1697e87721.tar.bz2 |
Make safe for paths with spaces
-rw-r--r-- | linux/Documentation/dvb/get_dvb_firmware | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/Documentation/dvb/get_dvb_firmware b/linux/Documentation/dvb/get_dvb_firmware index 0df55436f..49a40f845 100644 --- a/linux/Documentation/dvb/get_dvb_firmware +++ b/linux/Documentation/dvb/get_dvb_firmware @@ -282,7 +282,7 @@ sub verify { sub copy { my ($from, $to) = @_; - system("cp -f $from $to") and die ("cp failed"); + system("cp -f \"$from\" \"$to\"") and die ("cp failed"); } sub extract { |