[srvx-commits] CVS: services/src expnhelp.c,1.5,1.6
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2002-11-14 00:50:42
|
Update of /cvsroot/srvx/services/src
In directory usw-pr-cvs1:/tmp/cvs-serv18023/src
Modified Files:
expnhelp.c
Log Message:
explain why the user probably has an exec() failure in expnhelp
Index: expnhelp.c
===================================================================
RCS file: /cvsroot/srvx/services/src/expnhelp.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** expnhelp.c 15 Aug 2002 02:49:26 -0000 1.5
--- expnhelp.c 14 Nov 2002 00:50:39 -0000 1.6
***************
*** 78,81 ****
--- 78,82 ----
execvp("m4", new_argv->list);
fprintf(stderr, "Error in exec: %s (%d)\n", strerror(errno), errno);
+ fprintf(stderr, "Maybe you do not have the 'm4' program installed?\n");
return 1;
}
|