commit | 86b4d64aa3f5ca4c2824a8948541b0e18dfe0a74 | [log] [tgz] |
---|---|---|
author | Rob Landley <rob@landley.net> | Thu Aug 03 17:58:17 2006 +0000 |
committer | Rob Landley <rob@landley.net> | Thu Aug 03 17:58:17 2006 +0000 |
tree | b3002e01131f99581c1be3462b96b2f2c40408f4 | |
parent | 7478804b783619762a52a740037126ef8711acc2 [diff] [blame] |
These should have been part of 15767 too.
diff --git a/procps/fuser.c b/procps/fuser.c index 2965fc3..aae24f5 100644 --- a/procps/fuser.c +++ b/procps/fuser.c
@@ -83,7 +83,7 @@ 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; }