Ivan Vershinin wrote:
> +             user = getenv("USER");
> +             if(!user)

Heyho,

I do not know how you guys think about this, but I would do that in one line:

if(!(user = getenv("USER")))

--Markus

Reply via email to