Add missing newlines to some error messages.
authorGuus Sliepen <guus@tinc-vpn.org>
Fri, 5 Jan 2018 16:13:57 +0000 (17:13 +0100)
committerGuus Sliepen <guus@tinc-vpn.org>
Fri, 5 Jan 2018 16:13:57 +0000 (17:13 +0100)
src/tincctl.c

index 4803d6c3f56a2290e8f5afeeb8d3e3feab6c03c3..cd2d3d8eab8806a42e01822548d4ea969660a2a5 100644 (file)
@@ -842,7 +842,7 @@ bool connect_tincd(bool verbose) {
 
        if(getaddrinfo(host, port, &hints, &res) || !res) {
                if(verbose) {
-                       fprintf(stderr, "Cannot resolve %s port %s: %s", host, port, sockstrerror(sockerrno));
+                       fprintf(stderr, "Cannot resolve %s port %s: %s\n", host, port, sockstrerror(sockerrno));
                }
 
                return false;
@@ -863,7 +863,7 @@ bool connect_tincd(bool verbose) {
 
        if(ioctlsocket(fd, FIONBIO, &arg) != 0) {
                if(verbose) {
-                       fprintf(stderr, "ioctlsocket failed: %s", sockstrerror(sockerrno));
+                       fprintf(stderr, "System call `%s' failed: %s\n", "ioctlsocket", sockstrerror(sockerrno));
                }
        }
 
@@ -1157,7 +1157,7 @@ static int dump_invitations(void) {
                buf[0] = 0;
 
                if(!fgets(buf, sizeof(buf), f)) {
-                       fprintf(stderr, "Invalid invitation file %s", fname);
+                       fprintf(stderr, "Invalid invitation file %s\n", fname);
                        fclose(f);
                        continue;
                }
@@ -1171,7 +1171,7 @@ static int dump_invitations(void) {
                }
 
                if(strncmp(buf, "Name = ", 7) || !check_id(buf + 7)) {
-                       fprintf(stderr, "Invalid invitation file %s", fname);
+                       fprintf(stderr, "Invalid invitation file %s\n", fname);
                        continue;
                }