These should have been part of 15767 too.

This commit is contained in:
Rob Landley
2006-08-03 17:58:17 +00:00
parent 7478804b78
commit 86b4d64aa3
9 changed files with 34 additions and 61 deletions

View File

@ -83,7 +83,7 @@ static int fuser_parse_net_arg(const char *filename,
if((sscanf(filename, "%d/%4s", port, tproto)) != 2) return 0;
sprintf(path, "%s/net/%s", FUSER_PROC_DIR, tproto);
if((access(path, R_OK)) != 0) return 0;
*proto = bb_xstrdup(tproto);
*proto = xstrdup(tproto);
return 1;
}