X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Ftincctl.c;h=7e08629e76fed5da76ec6ac93950588793149be4;hb=b1f8c65a2cfa307d9b8ed8cc3c8d4819f605e4f6;hp=39f89426e69d42396636bc03a3dd858b0ef6d38c;hpb=d82fcc88f355e3c8144478a860dfae0b299004a9;p=tinc diff --git a/src/tincctl.c b/src/tincctl.c index 39f89426..7e08629e 100644 --- a/src/tincctl.c +++ b/src/tincctl.c @@ -335,13 +335,13 @@ static void make_names(void) { static int fullread(int fd, void *data, size_t datalen) { int rv, len = 0; - while (len < datalen) { + while(len < datalen) { rv = read(fd, data + len, datalen - len); if(rv == -1 && errno == EINTR) continue; - else if (rv == -1) + else if(rv == -1) return rv; - else if (rv == 0) { + else if(rv == 0) { errno = ENODATA; return -1; } @@ -386,7 +386,7 @@ static int send_ctl_request(int fd, enum request_type type, } if(req.length > sizeof req) { - if (indata_p == NULL) { + if(indata_p == NULL) { errno = EINVAL; return -1; } @@ -551,7 +551,7 @@ int main(int argc, char *argv[], char *envp[]) { } if(!strcasecmp(argv[optind], "dump")) { - if (argc < optind + 2) { + if(argc < optind + 2) { fprintf(stderr, _("Not enough arguments.\n")); usage(true); return 1;