From: Fredrik Fornwall Date: Wed, 12 Aug 2015 05:29:50 +0000 (-0400) Subject: pwd.h patch: Add casting X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/termux-packages/commitdiff_plain/394bbb6454a35e3a8adb42a8793aa3e16e6598f8 pwd.h patch: Add casting --- diff --git a/ndk_patches/pwd.patch b/ndk_patches/pwd.patch index 4cbc750d..b302e8f8 100644 --- a/ndk_patches/pwd.patch +++ b/ndk_patches/pwd.patch @@ -24,7 +24,7 @@ diff -u -r /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/incl + if (access(bash_path, X_OK) != -1) pw->pw_shell = (char*) bash_path; + else pw->pw_shell = "@TERMUX_PREFIX@/bin/ash"; + } else { -+ pw->pw_shell = strcmp(realpath_buffer, "@TERMUX_PREFIX@/bin/busybox") == 0 ? "@TERMUX_PREFIX@/bin/ash" : realpath_buffer; ++ pw->pw_shell = strcmp(realpath_buffer, "@TERMUX_PREFIX@/bin/busybox") == 0 ? (char*)"@TERMUX_PREFIX@/bin/ash" : realpath_buffer; + } + pw->pw_dir = "@TERMUX_HOME@"; + pw->pw_passwd = "*";