Index: sys/kern/imgact_shell.c =================================================================== RCS file: /home/ncvs/src/sys/kern/imgact_shell.c,v retrieving revision 1.26 diff -u -r1.26 imgact_shell.c --- sys/kern/imgact_shell.c 11 Jun 2003 00:56:54 -0000 1.26 +++ sys/kern/imgact_shell.c 29 Sep 2004 13:04:02 -0000 @@ -73,7 +73,7 @@ /* * 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); }