summaryrefslogtreecommitdiffstats
path: root/netrom/nrattach.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2017-07-28 14:10:07 +0200
committerRalf Baechle <ralf@linux-mips.org>2017-07-31 04:29:44 +0200
commitdaba307035faf4cc01f1ccb883b21281d91234cc (patch)
treeedbd5df9285303f281524fac8064866057ce35ce /netrom/nrattach.c
parent71b0582584ac5de97141ea207ddf17f7c938b2df (diff)
treewide: Kill assignments in if conditions.
Somewhat hard to read and the code base already has many overlong lines. Found with below spatch file and some manual editing in ax25/access.c to restore a comment lost by spatch. @parens@ expression E, F, G; binary operator X; statement S; @@ - if ((E = F) X G) + E = F; + if (E X G) S Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'netrom/nrattach.c')
-rw-r--r--netrom/nrattach.c33
1 files changed, 22 insertions, 11 deletions
diff --git a/netrom/nrattach.c b/netrom/nrattach.c
index 66c85a0..3632836 100644
--- a/netrom/nrattach.c
+++ b/netrom/nrattach.c
@@ -37,7 +37,8 @@ static int readconfig(char *port)
char buffer[90], *s;
int n = 0;
- if ((fp = fopen(CONF_NRPORTS_FILE, "r")) == NULL) {
+ fp = fopen(CONF_NRPORTS_FILE, "r");
+ if (fp == NULL) {
fprintf(stderr, "nrattach: cannot open nrports file\n");
return FALSE;
}
@@ -45,13 +46,15 @@ static int readconfig(char *port)
while (fgets(buffer, 90, fp) != NULL) {
n++;
- if ((s = strchr(buffer, '\n')) != NULL)
+ s = strchr(buffer, '\n');
+ if (s != NULL)
*s = '\0';
if (strlen(buffer) > 0 && *buffer == '#')
continue;
- if ((s = strtok(buffer, " \t\r\n")) == NULL) {
+ s = strtok(buffer, " \t\r\n");
+ if (s == NULL) {
fprintf(stderr, "nrattach: unable to parse line %d of the nrports file\n", n);
return FALSE;
}
@@ -59,25 +62,29 @@ static int readconfig(char *port)
if (strcmp(s, port) != 0)
continue;
- if ((s = strtok(NULL, " \t\r\n")) == NULL) {
+ s = strtok(NULL, " \t\r\n");
+ if (s == NULL) {
fprintf(stderr, "nrattach: unable to parse line %d of the nrports file\n", n);
return FALSE;
}
callsign = strdup(s);
- if ((s = strtok(NULL, " \t\r\n")) == NULL) {
+ s = strtok(NULL, " \t\r\n");
+ if (s == NULL) {
fprintf(stderr, "nrattach: unable to parse line %d of the nrports file\n", n);
return FALSE;
}
- if ((s = strtok(NULL, " \t\r\n")) == NULL) {
+ s = strtok(NULL, " \t\r\n");
+ if (s == NULL) {
fprintf(stderr, "nrattach: unable to parse line %d of the nrports file\n", n);
return FALSE;
}
if (mtu == 0) {
- if ((mtu = atoi(s)) <= 0) {
+ mtu = atoi(s);
+ if (mtu <= 0) {
fprintf(stderr, "nrattach: invalid paclen setting\n");
return FALSE;
}
@@ -101,7 +108,8 @@ static int getfreedev(char *dev)
int fd;
int i;
- if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
+ fd = socket(AF_INET, SOCK_DGRAM, 0);
+ if (fd < 0) {
perror("nrattach: socket");
return FALSE;
}
@@ -132,7 +140,8 @@ static int startiface(char *dev, struct hostent *hp)
char call[7];
int fd;
- if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
+ fd = socket(AF_INET, SOCK_DGRAM, 0);
+ if (fd < 0) {
perror("nrattach: socket");
return FALSE;
}
@@ -203,13 +212,15 @@ int main(int argc, char *argv[])
while ((fd = getopt(argc, argv, "i:m:v")) != -1) {
switch (fd) {
case 'i':
- if ((hp = gethostbyname(optarg)) == NULL) {
+ hp = gethostbyname(optarg);
+ if (hp == NULL) {
fprintf(stderr, "nrattach: invalid internet name/address - %s\n", optarg);
return 1;
}
break;
case 'm':
- if ((mtu = atoi(optarg)) <= 0) {
+ mtu = atoi(optarg);
+ if (mtu <= 0) {
fprintf(stderr, "nrattach: invalid mtu size - %s\n", optarg);
return 1;
}