aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-29 15:53:34 +0000
committervodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-29 15:53:34 +0000
commit7c8bf4a0ff3205a5ee8d9a6292036d905db3c479 (patch)
tree58ff77c70588e2f86d948c25cd2bd7c05d375653
parenta10f69ff9fd0ed4f4e8c4b09696d2edaeb85b7f5 (diff)
downloadbusybox-w32-7c8bf4a0ff3205a5ee8d9a6292036d905db3c479.tar.gz
busybox-w32-7c8bf4a0ff3205a5ee8d9a6292036d905db3c479.tar.bz2
busybox-w32-7c8bf4a0ff3205a5ee8d9a6292036d905db3c479.zip
forgotten putenv
git-svn-id: svn://busybox.net/trunk/busybox@11693 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--e2fsprogs/mke2fs.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/e2fsprogs/mke2fs.c b/e2fsprogs/mke2fs.c
index f41857866..017fb53c5 100644
--- a/e2fsprogs/mke2fs.c
+++ b/e2fsprogs/mke2fs.c
@@ -4,10 +4,8 @@
4 * Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 4 * Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5 * 2003, 2004, 2005 by Theodore Ts'o. 5 * 2003, 2004, 2005 by Theodore Ts'o.
6 * 6 *
7 * %Begin-Header%
8 * This file may be redistributed under the terms of the GNU Public 7 * This file may be redistributed under the terms of the GNU Public
9 * License. 8 * License.
10 * %End-Header%
11 */ 9 */
12 10
13/* Usage: mke2fs [options] device 11/* Usage: mke2fs [options] device
@@ -799,6 +797,7 @@ static int PRS(int argc, char *argv[])
799 char *newpath; 797 char *newpath;
800 798
801 bb_xasprintf(&newpath, "%s:%s", PATH_SET, oldpath); 799 bb_xasprintf(&newpath, "%s:%s", PATH_SET, oldpath);
800 putenv(newpath);
802 } else 801 } else
803 putenv (PATH_SET); 802 putenv (PATH_SET);
804 803