From: chas w. <ch...@us...> - 2009-08-03 14:30:25
|
Update of /cvsroot/linux-atm/linux-atm/src/sigd In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv29610/src/sigd Modified Files: Tag: V2_5_1 cfg_y.y Log Message: pull down updates from the HEAD into 2.5.1 Index: cfg_y.y =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/sigd/cfg_y.y,v retrieving revision 1.2.2.2 retrieving revision 1.2.2.2.2.1 diff -C2 -d -r1.2.2.2 -r1.2.2.2.2.1 *** cfg_y.y 27 Sep 2005 23:16:26 -0000 1.2.2.2 --- cfg_y.y 3 Aug 2009 14:30:14 -0000 1.2.2.2.2.1 *************** *** 8,11 **** --- 8,12 ---- #endif + #include <stdlib.h> #include <string.h> #include <ctype.h> *************** *** 25,28 **** --- 26,32 ---- static SIG_ENTITY *curr_sig = &_entity; + void yyerror(const char *s); + void yywarn(const char *s); + int yylex(void); static int hex2num(char digit) *************** *** 128,132 **** if (atm_equal((struct sockaddr *) &sig->signaling_pvc, (struct sockaddr *) &$2,0,0)) ! yyerror("duplicate PVC address %d.%d.%d",S_PVC(sig)); curr_sig = alloc_t(SIG_ENTITY); *curr_sig = _entity; --- 132,136 ---- if (atm_equal((struct sockaddr *) &sig->signaling_pvc, (struct sockaddr *) &$2,0,0)) ! yyerror("duplicate PVC address"); curr_sig = alloc_t(SIG_ENTITY); *curr_sig = _entity; |