Changeset 755

Show
Ignore:
Timestamp:
08/12/07 03:01:11 (1 year ago)
Author:
Gregor
Message:

sss/conf.d: Fixed 'set' and 'add' commands (see ticket #102).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/docs/ChangeLog

    r746 r755  
     1SVN from 0.70: 
     2        - Fixed 'set' and 'add' commands (see ticket #102). 
     3 
    140.70 from 0.69: 
    25        - Rebuild: Merged DMD 1.020. 
  • trunk/sss/conf.d

    r743 r755  
    942942            cmd = cmd[4..$]; 
    943943             
    944             // 1) get the <section>.<setting> 
     944            // 1) get the <section>:<setting> 
    945945            char[] sset = cmd.dup; 
    946946            for (i = 0; i < cmd.length; i++) { 
     
    955955            if (i == cmd.length) cmd = ""; 
    956956             
    957             // 2) divide <section>.<setting> 
     957            // 2) divide <section>:<setting> 
    958958            char[] section, setting; 
    959             int dotloc = find(sset, '.'); 
     959            int dotloc = find(sset, ':'); 
    960960            if (dotloc == -1) { 
    961961                section = "";