diff options
author | Rob Landley <rob@landley.net> | 2006-08-03 17:58:17 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-08-03 17:58:17 +0000 |
commit | 86b4d64aa3f5ca4c2824a8948541b0e18dfe0a74 (patch) | |
tree | b3002e01131f99581c1be3462b96b2f2c40408f4 /procps | |
parent | 7478804b783619762a52a740037126ef8711acc2 (diff) | |
download | busybox-w32-86b4d64aa3f5ca4c2824a8948541b0e18dfe0a74.tar.gz busybox-w32-86b4d64aa3f5ca4c2824a8948541b0e18dfe0a74.tar.bz2 busybox-w32-86b4d64aa3f5ca4c2824a8948541b0e18dfe0a74.zip |
These should have been part of 15767 too.
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 | ||