diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-29 16:18:57 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-29 16:18:57 +0000 |
commit | 39a841cecf616098c9c8cf63bbfea5ea2922097c (patch) | |
tree | 5b3a1d569d1e952d8c43899050dca4d6c47bf176 /e2fsprogs/mke2fs.c | |
parent | 6a60c821a81b01a136037f8389bd42d86b37e395 (diff) | |
download | busybox-w32-39a841cecf616098c9c8cf63bbfea5ea2922097c.tar.gz busybox-w32-39a841cecf616098c9c8cf63bbfea5ea2922097c.tar.bz2 busybox-w32-39a841cecf616098c9c8cf63bbfea5ea2922097c.zip |
change interface to bb_xasprintf() - more perfect for me.
ln.c: error_msg(str)->error_msg(%s, str) - remove standart "feature" for hackers
reduce 100 bytes don't care in sum
Diffstat (limited to 'e2fsprogs/mke2fs.c')
-rw-r--r-- | e2fsprogs/mke2fs.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/e2fsprogs/mke2fs.c b/e2fsprogs/mke2fs.c index 017fb53c5..6cd5bd420 100644 --- a/e2fsprogs/mke2fs.c +++ b/e2fsprogs/mke2fs.c | |||
@@ -794,10 +794,7 @@ static int PRS(int argc, char *argv[]) | |||
794 | 794 | ||
795 | /* Update our PATH to include /sbin */ | 795 | /* Update our PATH to include /sbin */ |
796 | if (oldpath) { | 796 | if (oldpath) { |
797 | char *newpath; | 797 | putenv (bb_xasprintf("%s:%s", PATH_SET, oldpath)); |
798 | |||
799 | bb_xasprintf(&newpath, "%s:%s", PATH_SET, oldpath); | ||
800 | putenv(newpath); | ||
801 | } else | 798 | } else |
802 | putenv (PATH_SET); | 799 | putenv (PATH_SET); |
803 | 800 | ||