]> git.pld-linux.org Git - packages/busybox.git/commitdiff
- upstream fix for busybox 1.12.1
authorhawk <hawk@pld-linux.org>
Sat, 8 Nov 2008 14:46:13 +0000 (14:46 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    busybox-basename.patch -> 1.1
    busybox-login.patch -> 1.1

busybox-basename.patch [new file with mode: 0644]
busybox-login.patch [new file with mode: 0644]

diff --git a/busybox-basename.patch b/busybox-basename.patch
new file mode 100644 (file)
index 0000000..9d078a5
--- /dev/null
@@ -0,0 +1,10 @@
+diff -urpN busybox-1.12.1/coreutils/basename.c busybox-1.12.1-basename/coreutils/basename.c
+--- busybox-1.12.1/coreutils/basename.c        2008-09-28 20:04:18.000000000 +0200
++++ busybox-1.12.1-basename/coreutils/basename.c       2008-11-06 16:10:54.000000000 +0100
+@@ -48,5 +48,5 @@ int basename_main(int argc, char **argv)
+       /* puts(s) will do, but we can do without stdio this way: */
+       s[m++] = '\n';
+-      return full_write(STDOUT_FILENO, s, m) == (ssize_t)m;
++      return full_write(STDOUT_FILENO, s, m) != (ssize_t)m;
+ }
diff --git a/busybox-login.patch b/busybox-login.patch
new file mode 100644 (file)
index 0000000..cc015ea
--- /dev/null
@@ -0,0 +1,25 @@
+--- busybox-1.12.1/libbb/setup_environment.c   Sun Sep 28 20:04:20 2008
++++ busybox-1.12.1-login/libbb/setup_environment.c     Fri Oct 31 00:56:51 2008
+@@ -32,15 +32,15 @@
+ void FAST_FUNC setup_environment(const char *shell, int clear_env, int change_env, const struct passwd *pw)
+ {
++      /* Change the current working directory to be the home directory
++       * of the user */
++      if (chdir(pw->pw_dir)) {
++              xchdir("/");
++              bb_error_msg("can't chdir to home directory '%s'", pw->pw_dir);
++      }
++
+       if (clear_env) {
+               const char *term;
+-
+-              /* Change the current working directory to be the home directory
+-               * of the user */
+-              if (chdir(pw->pw_dir)) {
+-                      xchdir("/");
+-                      bb_error_msg("can't chdir to home directory '%s'", pw->pw_dir);
+-              }
+               /* Leave TERM unchanged. Set HOME, SHELL, USER, LOGNAME, PATH.
+                  Unset all other environment variables.  */
This page took 0.090024 seconds and 4 git commands to generate.