Update of /cvsroot/srvx/services/src
In directory sc8-pr-cvs1:/tmp/cvs-serv29363/src
Modified Files:
proto-p10.c
Log Message:
fix redundant test for unbursted channels
Index: proto-p10.c
===================================================================
RCS file: /cvsroot/srvx/services/src/proto-p10.c,v
retrieving revision 1.81
retrieving revision 1.82
diff -C2 -r1.81 -r1.82
*** proto-p10.c 28 Oct 2003 04:56:28 -0000 1.81
--- proto-p10.c 2 Dec 2003 19:50:22 -0000 1.82
***************
*** 1008,1013 ****
in_timestamp = atoi(argv[2]);
! if (self->burst
! && (cNode = dict_find(unbursted_channels, argv[1], NULL))) {
cNode->timestamp = in_timestamp;
dict_remove(unbursted_channels, cNode->name);
--- 1008,1012 ----
in_timestamp = atoi(argv[2]);
! if ((cNode = dict_find(unbursted_channels, argv[1], NULL))) {
cNode->timestamp = in_timestamp;
dict_remove(unbursted_channels, cNode->name);
|