$NetBSD: patch-ab,v 1.2 2003/11/07 16:35:51 christos Exp $ --- fep_alias.c.orig 1988-11-13 01:50:58.000000000 -0500 +++ fep_alias.c 2003-11-07 11:23:03.000000000 -0500 @@ -3,7 +3,7 @@ #ifndef lint static char rcsid[]= "$Header: /cvsroot/pkgsrc/misc/fep/patches/patch-ab,v 1.2 2003/11/07 16:35:51 christos Exp $ (SRA)"; -#endif lint +#endif /* lint */ #include #include @@ -18,7 +18,7 @@ ALIAS alias_top = {"top", "top", (ALIAS *)0}; ALIAS *alias_list = &alias_top; -CHAR aliased_line[MAXCOMLEN+1]; +CHAR aliased_line[MAXCMDLEN+1]; /* * Functions @@ -44,7 +44,7 @@ while (isspace (*comline)) ++comline; - if (*comline == NULL) + if (*comline == '\0') return ((CHAR *)0); argc = mkargv (comline, argv, MAXARGS);