[srvx-commits] CVS: services/src proto-p10.c,1.79,1.80
Brought to you by:
entrope
From: Entrope <en...@us...> - 2003-10-26 14:06:31
|
Update of /cvsroot/srvx/services/src In directory sc8-pr-cvs1:/tmp/cvs-serv29863/src Modified Files: proto-p10.c Log Message: fix off-by-one error in user modes reassembly Index: proto-p10.c =================================================================== RCS file: /cvsroot/srvx/services/src/proto-p10.c,v retrieving revision 1.79 retrieving revision 1.80 diff -C2 -r1.79 -r1.80 *** proto-p10.c 5 Oct 2003 03:15:29 -0000 1.79 --- proto-p10.c 26 Oct 2003 14:02:34 -0000 1.80 *************** *** 959,963 **** return 0; serv = GetServerH(origin); ! if (argc > 10) unsplit_string(argv+6, argc-9, modes); else --- 959,963 ---- return 0; serv = GetServerH(origin); ! if (argc > 9) unsplit_string(argv+6, argc-9, modes); else |