Changeset 263


Ignore:
Timestamp:
Nov 10, 2004, 4:58:44 PM (21 years ago)
Author:
pr
Message:

Fixes WarpIN bug 461

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1-0/src/helpers/stringh.c

    r196 r263  
    13241324            // or, if the data is enclosed in quotes, a quote
    13251325            cEnd = '\"';
     1326            pParam++;
     1327        }
     1328
     1329        // V1.0.3 (2004-11-10) [pr]: @@fixes 461
     1330        if (*pParam == '\'')
     1331        {
     1332            // or, if the data is enclosed in single quotes, a single quote
     1333            cEnd = '\'';
    13261334            pParam++;
    13271335        }
  • trunk/src/helpers/stringh.c

    r245 r263  
    14981498            // or, if the data is enclosed in quotes, a quote
    14991499            cEnd = '\"';
     1500            pParam++;
     1501        }
     1502
     1503        // V1.0.3 (2004-11-10) [pr]: @@fixes 461
     1504        if (*pParam == '\'')
     1505        {
     1506            // or, if the data is enclosed in single quotes, a single quote
     1507            cEnd = '\'';
    15001508            pParam++;
    15011509        }
Note: See TracChangeset for help on using the changeset viewer.