diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-17 14:28:53 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-17 14:28:53 +0000 |
commit | cb448fe01bbe75ef31c3190e8b63b0e1a320ffb4 (patch) | |
tree | 9757477193c1b8f3be9a772cabfb1ef92639240e /util-linux | |
parent | ffae845cfd0a0b9872827d806984841d4cfee104 (diff) | |
download | busybox-cb448fe01bbe75ef31c3190e8b63b0e1a320ffb4.tar.gz |
libbb: introduce and use xrename and rename_or_warn.
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c index a18fc0916..2bb022476 100644 --- a/util-linux/mdev.c +++ b/util-linux/mdev.c @@ -209,7 +209,7 @@ static void make_device(char *path, int delete) } else dest = alias; - rename(device_name, dest); + rename(device_name, dest); // TODO: xrename? symlink(dest, device_name); if (alias != dest) |