[srvx-commits] CVS: services/src modcmd.c,1.47,1.48
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2003-01-08 23:51:44
|
Update of /cvsroot/srvx/services/src
In directory sc8-pr-cvs1:/tmp/cvs-serv6917/src
Modified Files:
modcmd.c
Log Message:
fix off-by-one error in alias detection
Index: modcmd.c
===================================================================
RCS file: /cvsroot/srvx/services/src/modcmd.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -r1.47 -r1.48
*** modcmd.c 7 Jan 2003 04:25:03 -0000 1.47
--- modcmd.c 8 Jan 2003 23:51:41 -0000 1.48
***************
*** 984,988 ****
}
! if (argc > arg+1) {
/* a more complicated alias; fix it up */
unsigned int nn;
--- 984,988 ----
}
! if (argc > arg) {
/* a more complicated alias; fix it up */
unsigned int nn;
|