aboutsummaryrefslogtreecommitdiffstats
path: root/misc/ss.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/ss.c')
-rw-r--r--misc/ss.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/ss.c b/misc/ss.c
index d509009..0dab32c 100644
--- a/misc/ss.c
+++ b/misc/ss.c
@@ -2729,7 +2729,7 @@ static int unix_show(struct filter *f)
if ((fp = net_unix_open()) == NULL)
return -1;
- if (!fgets(buf, sizeof(buf)-1, fp)) {
+ if (!fgets(buf, sizeof(buf), fp)) {
fclose(fp);
return -1;
}
@@ -2738,7 +2738,7 @@ static int unix_show(struct filter *f)
newformat = 1;
cnt = 0;
- while (fgets(buf, sizeof(buf)-1, fp)) {
+ while (fgets(buf, sizeof(buf), fp)) {
struct sockstat *u, **insp;
int flags;
@@ -3217,12 +3217,12 @@ static int netlink_show(struct filter *f)
if ((fp = net_netlink_open()) == NULL)
return -1;
- if (!fgets(buf, sizeof(buf)-1, fp)) {
+ if (!fgets(buf, sizeof(buf), fp)) {
fclose(fp);
return -1;
}
- while (fgets(buf, sizeof(buf)-1, fp)) {
+ while (fgets(buf, sizeof(buf), fp)) {
sscanf(buf, "%llx %d %d %x %d %d %llx %d",
&sk,
&prot, &pid, &groups, &rq, &wq, &cb, &rc);