View | Details | Raw Unified | Return to bug 54773
Collapse All | Expand All

(-)cvs-1.12.7.orig/src/server.c (-2 / +2 lines)
Lines 1599-1605 Link Here
1599
	    && strncmp (arg, name, cp - name) == 0)
1599
	    && strncmp (arg, name, cp - name) == 0)
1600
	{
1600
	{
1601
	    timefield = strchr (cp + 1, '/') + 1;
1601
	    timefield = strchr (cp + 1, '/') + 1;
1602
	    if (*timefield != '=')
1602
	    if (*timefield == '/')
1603
	    {
1603
	    {
1604
		cp = timefield + strlen (timefield);
1604
		cp = timefield + strlen (timefield);
1605
		cp[1] = '\0';
1605
		cp[1] = '\0';
Lines 1642-1648 Link Here
1642
	    && strncmp (arg, name, cp - name) == 0)
1642
	    && strncmp (arg, name, cp - name) == 0)
1643
	{
1643
	{
1644
	    timefield = strchr (cp + 1, '/') + 1;
1644
	    timefield = strchr (cp + 1, '/') + 1;
1645
	    if (!(timefield[0] == 'M' && timefield[1] == '/'))
1645
	    if (*timefield == '/')
1646
	    {
1646
	    {
1647
		cp = timefield + strlen (timefield);
1647
		cp = timefield + strlen (timefield);
1648
		cp[1] = '\0';
1648
		cp[1] = '\0';

Return to bug 54773