in reply to Re^4: (OT) Fixing Line Endings - patch the shell (kernel)
in thread (OT) Fixing Line Endings

Just change that to:

if (isspace(*cp)) *cp = '\0';
Don't forget to #include <linux/ctype.h> up top, though, to get this macro...