Re: [systemd-devel] [PATCH] shared/util: Fix glob_extend() argument

2013-10-14 Thread Zbigniew Jędrzejewski-Szmek
On Mon, Oct 14, 2013 at 08:15:51AM +0200, Bastien Nocera wrote: > > glob_extend() would completely fail to work, or return incorrect > data if it wasn't being passed the current getopt "optarg" variable > as it used the global variable, instead of the passed parameters. Eh, globals. Applied. Zbys

[systemd-devel] [PATCH] shared/util: Fix glob_extend() argument

2013-10-13 Thread Bastien Nocera
glob_extend() would completely fail to work, or return incorrect data if it wasn't being passed the current getopt "optarg" variable as it used the global variable, instead of the passed parameters. --- src/shared/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shar