Re: [PATCH 1/3] Revert "tmpfs: drop privileges in the tmpfs translator"

2013-10-08 Thread Samuel Thibault
All three applied, thanks. Samuel

[PATCH 2/3] trans: rename a global variable

2013-10-08 Thread Justus Winter
Rename the global variable "path" to "target_path" to make it more unambiguous. * trans/mtab.c: Rename global variable "path". --- trans/mtab.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/trans/mtab.c b/trans/mtab.c index 2973a0b..250de7d 100644 --- a/tr

[PATCH 1/3] Revert "tmpfs: drop privileges in the tmpfs translator"

2013-10-08 Thread Justus Winter
This reverts commit 7075bc11289355478659cd1610632a9299734afc. Dropping the unix privileges of the tmpfs translator causes problems with the passive translator startup. The function fshelp_fetch_root creates an auth handle containing the processes original UID and GID. But if the privileges were dr

[PATCH 3/3] libfshelp: properly free active translator entries

2013-10-08 Thread Justus Winter
Previously the dynamically allocated field name leaks. Fix this by properly freeing the objects of type struct translator. * libfshelp/translator-list.c (translator_ihash_cleanup): Fix memory leak. --- libfshelp/translator-list.c |5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff