Actually obviously doesn't work properly as I've done nothing with directories. I settled on . filename as the syntax (almost like bash) as # is the comment delimiter. Perhaps I should use
p path g group @ netgroup and factor out the dir lookup elsewhere in parameter.c to use the appropriate source. Thoughts? On 9 March 2011 10:15, Craig <[email protected]> wrote: > $ diff -u clean/dsh-0.25.10/parameter.c dsh-0.25.10/parameter.c > --- clean/dsh-0.25.10/parameter.c 2007-08-15 00:23:42.000000000 +0100 > +++ dsh-0.25.10/parameter.c 2011-03-09 09:50:22.000000000 +0000 > @@ -170,7 +170,16 @@ > { > const char * strippedstring = stripwhitespace(buf); > if (strippedstring) > - machinelist=machinelist_lladd(machinelist,strippedstring); > + { > + if ((0 == strncmp(". ", strippedstring, 2))) > + { > + machinelist=read_machinelist(machinelist, > &strippedstring[2], NULL); > + } > + else > + { > + machinelist=machinelist_lladd(machinelist,strippedstring); > + } > + } > } > fclose(f); > } > -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

