Index: imgact_shell.c =================================================================== RCS file: /private/FreeBSD/src/sys/kern/imgact_shell.c,v retrieving revision 1.26 diff -u -p -r1.26 imgact_shell.c --- imgact_shell.c 11 Jun 2003 00:56:54 -0000 1.26 +++ imgact_shell.c 31 Oct 2004 09:13:55 -0000 @@ -73,7 +73,7 @@ exec_shell_imgact(imgp) /* * Find end of line; return if the line > MAXSHELLCMDLEN long. */ - for (ihp = &image_header[2]; *ihp != '\n' && *ihp != '#'; ++ihp) { + for (ihp = &image_header[2]; *ihp != '\n'; ++ihp) { if (ihp >= &image_header[MAXSHELLCMDLEN]) return(ENAMETOOLONG); }