in efl/ too please Vincent
On Tue, Nov 13, 2012 at 10:58 AM, Enlightenment SVN <no-re...@enlightenment.org> wrote: > Log: > eina: Fix "E restores default configuration on every restart" > > Spankies for glima and huge thanks to J?\195?\169r?\195?\169my Zurcher for > this fix. > > Patch by: J?\195?\169r?\195?\169my Zurcher > > Author: stefan > Date: 2012-11-13 01:58:32 -0800 (Tue, 13 Nov 2012) > New Revision: 79212 > Trac: http://trac.enlightenment.org/e/changeset/79212 > > Modified: > trunk/eina/src/lib/eina_file.c > > Modified: trunk/eina/src/lib/eina_file.c > =================================================================== > --- trunk/eina/src/lib/eina_file.c 2012-11-13 09:51:28 UTC (rev 79211) > +++ trunk/eina/src/lib/eina_file.c 2012-11-13 09:58:32 UTC (rev 79212) > @@ -560,19 +560,22 @@ > ++p; > } > } > - // remove '/./' > - else if (p[2] == '/') > - { > - len -= p + 2 - q; > - memmove(q, p + 2, len - (q - result)); > - result[len] = '\0'; > - p = q; > - } > else > - { > - q = p; > - ++p; > - } > + if (p[1] == '.' > + && p[2] == '/') > + { > + // remove '/./' > + len -= 2; > + memmove(p, p + 2, len - (p - result)); > + result[len] = '\0'; > + q = p; > + ++p; > + } > + else > + { > + q = p; > + ++p; > + } > } > > if (length) > > > ------------------------------------------------------------------------------ > Monitor your physical, virtual and cloud infrastructure from a single > web console. Get in-depth insight into apps, servers, databases, vmware, > SAP, cloud infrastructure, etc. Download 30-day Free Trial. > Pricing starts from $795 for 25 servers or applications! > http://p.sf.net/sfu/zoho_dev2dev_nov > _______________________________________________ > enlightenment-svn mailing list > enlightenment-...@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn ------------------------------------------------------------------------------ Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc. Download 30-day Free Trial. Pricing starts from $795 for 25 servers or applications! http://p.sf.net/sfu/zoho_dev2dev_nov _______________________________________________ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel