Hi!
> +int longpath_setup(void)
> +{
> + int i;
> +
> + for (i = 0; i < PATH_MAX + 2; i++)
> + longpathname[i] = 'a';
> +
> + return 0;
> +}
Why don't we just do memset() in the setup()?
memset(longpathname, 'a', sizeof(longpathname) - 1);
Should do the same.
--
Cyril Hrubis
chrubis@suse.cz