mirror of
https://github.com/gnustep/libs-sqlclient.git
synced 2025-02-19 10:00:59 +00:00
Expand tildes in paths
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/sqlclient/trunk@21338 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
51fa3d864d
commit
9f7710abc7
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2005-06-21 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* SQLClient.m: Expand tilde in paths searched for backend bundles.
|
||||||
|
|
||||||
2005-05-25 Richard Frith-Macdonald <rfm@gnu.org>
|
2005-05-25 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Postgres.m: Clear connection if an exception occurs while
|
* Postgres.m: Clear connection if an exception occurs while
|
||||||
|
|
|
@ -1275,7 +1275,7 @@ static void quoteString(NSMutableString *s)
|
||||||
unsigned count;
|
unsigned count;
|
||||||
|
|
||||||
paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory,
|
paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory,
|
||||||
NSLocalDomainMask, NO);
|
NSLocalDomainMask, YES);
|
||||||
count = [paths count];
|
count = [paths count];
|
||||||
while (count-- > 0)
|
while (count-- > 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue