Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw32.git;a=commitdiff;h=577645beb29eff557a08bb79c92f636971b7a02c
commit 577645beb29eff557a08bb79c92f636971b7a02c Author: James Buren <[email protected]> Date: Fri Jun 29 11:28:47 2012 -0500 fw32: in ismounted logic, check for same stuff as in umounting. diff --git a/fw32.c b/fw32.c index ca8fc7b..87fb713 100644 --- a/fw32.c +++ b/fw32.c @@ -270,6 +270,11 @@ ismounted(const char *path) *e = 0; + char *ptr = strstr(s,"\\040"); + + if(ptr); + *ptr = 0; + if(!strcmp(s,path)) { found = true; _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
