Changeset 6141 for trunk/ARBDB/admatch.c

Show
Ignore:
Timestamp:
14/08/09 16:29:27 (3 years ago)
Author:
westram
Message:
  • spellchecked all (phew)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ARBDB/admatch.c

    r6100 r6141  
    402402/* Wildcards in 'search' string: 
    403403 *      ?   one character 
    404  *      *   serveral characters 
     404 *      *   several characters 
    405405 * 
    406406 * if 'case_sens' == GB_IGNORE_CASE -> change all letters to uppercase 
     
    530530                    klz = gbs_search_second_bracket(p); 
    531531                    if (klz) {          /* reference found: $(gbd) */ 
    532                         int seperator = 0; 
     532                        int separator = 0; 
    533533                        *klz = 0; 
    534534                        psym = strpbrk(p,"#|:"); 
    535535                        if (psym) { 
    536                             seperator = *psym; 
     536                            separator = *psym; 
    537537                            *psym =0; 
    538538                        } 
     
    542542                            gb_entry = gb_container; 
    543543                        } 
    544                         if (psym) *psym = seperator; 
     544                        if (psym) *psym = separator; 
    545545 
    546546                        if (!gb_entry || gb_entry == gb_container) { 
     
    552552                        if (entry) { 
    553553                            char *h; 
    554                             switch(seperator) { 
     554                            switch(separator) { 
    555555                                case ':': 
    556556                                    h = GBS_string_eval(entry,psym+1,gb_container); 
     
    634634     *   '?' by GBS_WILD if followed by a number or '?' 
    635635     *   '*' by GBS_MWILD  or '(' 
    636      * \ is the escape charakter 
     636     * \ is the escape character 
    637637     */ 
    638638    char *result,*s,*d;