diff options
Diffstat (limited to 'procps')
-rw-r--r-- | procps/fuser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/fuser.c b/procps/fuser.c index 2965fc34b..aae24f50c 100644 --- a/procps/fuser.c +++ b/procps/fuser.c | |||
@@ -83,7 +83,7 @@ static int fuser_parse_net_arg(const char *filename, | |||
83 | if((sscanf(filename, "%d/%4s", port, tproto)) != 2) return 0; | 83 | if((sscanf(filename, "%d/%4s", port, tproto)) != 2) return 0; |
84 | sprintf(path, "%s/net/%s", FUSER_PROC_DIR, tproto); | 84 | sprintf(path, "%s/net/%s", FUSER_PROC_DIR, tproto); |
85 | if((access(path, R_OK)) != 0) return 0; | 85 | if((access(path, R_OK)) != 0) return 0; |
86 | *proto = bb_xstrdup(tproto); | 86 | *proto = xstrdup(tproto); |
87 | return 1; | 87 | return 1; |
88 | } | 88 | } |
89 | 89 | ||