isdnrep: suppress some messages

isdnlog: remove function Pathfind()
This commit is contained in:
luethje 1998-10-22 18:22:43 +00:00
parent 8c2b1d9d97
commit 6bf660c1cc
2 changed files with 14 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $Id: start_prog.c,v 1.11 1998/10/13 22:17:15 luethje Exp $
/* $Id: start_prog.c,v 1.12 1998/10/22 18:22:43 luethje Exp $
*
* ISDN accounting for isdn4linux.
*
@ -20,6 +20,10 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Log: start_prog.c,v $
* Revision 1.12 1998/10/22 18:22:43 luethje
* isdnrep: suppress some messages
* isdnlog: remove function Pathfind()
*
* Revision 1.11 1998/10/13 22:17:15 luethje
* isdnlog: evaluate the variable PATH for program starts.
*
@ -238,7 +242,8 @@ int Ring(info_args *Cmd, char *Opts[], int Die, int Async)
dup2(filedes[1],STDOUT_FILENO);
dup2(filedes[1],STDERR_FILENO);
execvp(Pathfind(Args[0],NULL,NULL), Args);
/* execvp(Pathfind(Args[0],NULL,NULL), Args);*/
execvp(Args[0], Args);
print_msg(PRT_ERR, "Can't start \"%s\" with execvp().\n", Args[0]);
/* Alarm(); */
exit(-1);

View File

@ -1,4 +1,4 @@
/* $Id: isdnrep.c,v 1.47 1998/10/13 21:53:17 luethje Exp $
/* $Id: isdnrep.c,v 1.48 1998/10/22 18:22:49 luethje Exp $
*
* ISDN accounting for isdn4linux. (Report-module)
*
@ -24,6 +24,10 @@
*
*
* $Log: isdnrep.c,v $
* Revision 1.48 1998/10/22 18:22:49 luethje
* isdnrep: suppress some messages
* isdnlog: remove function Pathfind()
*
* Revision 1.47 1998/10/13 21:53:17 luethje
* isdnrep and lib: bugfixes
*
@ -1436,7 +1440,7 @@ static int print_line(int status, one_call *cur_call, int computed, char *overla
dir = cur_call->dir?CALLED:CALLING;
if (cur_call->num[dir][0] != C_UNKNOWN &&
cur_call->num[dir][0] != '\0' &&
(Ptr = get_areacode(cur_call->num[dir],NULL,C_NO_ERROR)) != NULL)
(Ptr = get_areacode(cur_call->num[dir],NULL,C_NO_WARN | C_NO_ERROR)) != NULL)
colsize[i] = append_string(&string,*fmtstring, Ptr);
else
colsize[i] = append_string(&string,*fmtstring, "");
@ -1455,7 +1459,7 @@ static int print_line(int status, one_call *cur_call, int computed, char *overla
dir = cur_call->dir?CALLING:CALLED;
if (cur_call->num[dir][0] != C_UNKNOWN &&
cur_call->num[dir][0] != '\0' &&
(Ptr = get_areacode(cur_call->num[dir],NULL,C_NO_ERROR)) != NULL)
(Ptr = get_areacode(cur_call->num[dir],NULL,C_NO_WARN | C_NO_ERROR)) != NULL)
colsize[i] = append_string(&string,*fmtstring, Ptr);
else
colsize[i] = append_string(&string,*fmtstring, "");