Bug fixed in getHomeDir().

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1871 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2005-09-07 17:21:54 +00:00
parent 3c80d3df5e
commit a847c112f0
+1 -1
View File
@@ -180,7 +180,7 @@ getHomeDir (void)
return NULL;
// NB: pw points to a static buffer.
return pw->pw_name;
return pw->pw_dir;
#endif
}