From: Mikko Rasa Date: Mon, 10 Nov 2014 17:32:54 +0000 (+0200) Subject: Deprecate the system directory accessors that take arguments X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;ds=sidebyside;h=5c5ef91ab576f10288e2e3d027aa5c77bf8503a4;hp=5c5ef91ab576f10288e2e3d027aa5c77bf8503a4;p=libs%2Fcore.git Deprecate the system directory accessors that take arguments They are fundamentally broken due to their dependence on cwd and $PATH, which may be changed after application startup. Now that Application stores an absolute argv0, the argument-less versions can provide a more consistent answer. Implementations for the functions are still the same, as they behave correctly when an absolute argv0 is passed in. At some point in the future I'll remove the old versions completely. ---