diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-08-03 17:58:17 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-08-03 17:58:17 +0000 |
commit | 2265911dfe0141d98022f3054f4af2c7976e0921 (patch) | |
tree | b3002e01131f99581c1be3462b96b2f2c40408f4 /procps | |
parent | 87ac4ebdd5bf5a359df75b6e63ce1be4fd0cd47b (diff) | |
download | busybox-w32-2265911dfe0141d98022f3054f4af2c7976e0921.tar.gz busybox-w32-2265911dfe0141d98022f3054f4af2c7976e0921.tar.bz2 busybox-w32-2265911dfe0141d98022f3054f4af2c7976e0921.zip |
These should have been part of 15767 too.
git-svn-id: svn://busybox.net/trunk/busybox@15770 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 | ||