1
0

logtap: fix indentation

spaces not tabs
This commit is contained in:
Daniel Barlow 2025-01-02 22:45:00 +00:00
parent df414b796f
commit aa2160dd05

View File

@ -42,11 +42,11 @@ int open_shipper_socket(char *pathname) {
fd = socket(AF_LOCAL, SOCK_STREAM, 0);
if(fd >= 0) {
if(connect(fd, (struct sockaddr *) &sa, sizeof sa)) {
if((fail_count % 30) == 0)
if((fail_count % 30) == 0) {
printf(PROGRAM_NAME ": cannot connect socket \"%s\": %s\n",
pathname,
strerror(errno));
}
fail_count++;
close(fd);
return -1;