diff options
Diffstat (limited to 'system/ksh-openbsd/patches/linux/main_c.diff')
-rw-r--r-- | system/ksh-openbsd/patches/linux/main_c.diff | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/system/ksh-openbsd/patches/linux/main_c.diff b/system/ksh-openbsd/patches/linux/main_c.diff new file mode 100644 index 000000000000..a5d90620c11b --- /dev/null +++ b/system/ksh-openbsd/patches/linux/main_c.diff @@ -0,0 +1,15 @@ +--- ksh-openbsd_cvs/main.c 2010-02-23 12:49:19.000000000 +0100 ++++ ksh-openbsd_cvs.new/main.c 2010-04-01 21:01:24.134232647 +0200 +@@ -9,7 +9,12 @@ + #include "sh.h" + #include <sys/stat.h> + #include <pwd.h> ++#include "strlcpy.h" + ++/* on Linux we do not have _PW_NAME_LEN, but libc6 allows us 32 character usernames */ ++#ifndef _PW_NAME_LEN ++# define _PW_NAME_LEN 31 ++#endif + extern char **environ; + + /* |