Comment 1 for bug 80359

Revision history for this message
Mantas Kriaučiūnas (mantas) wrote :

When you apply glob handling in /etc/pmount.allow patch then please change line "add glob support to pmount.allow" in TODO file with

"add allowing [ and ] characters in pmount.allow glob support"
;)

My patch simply changes "if( !strcmp(d, device) )" with
if( !fnmatch(d, device, FNM_PATHNAME) )