We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dbdfa5 commit e934dbfCopy full SHA for e934dbf
src/main.c
@@ -1534,7 +1534,7 @@ main(int argc, char *argv[])
1534
*ptr = '\0';
1535
1536
/* * optarg now points to endpoint_name, (ptr + 1) points to unix_socket_path */
1537
- if (strlen(optarg) == 0 || strlen(ptr + 1) == 0) {
+ if ((strlen(optarg) == 0) || (strlen(ptr + 1) == 0)) {
1538
ERR("Empty endpoint name or socket path provided in -U parameter.");
1539
return EXIT_FAILURE;
1540
}
0 commit comments