Add a newline to a configuration file if it is missing.
authorGuus Sliepen <guus@tinc-vpn.org>
Sat, 21 Jul 2012 13:02:44 +0000 (15:02 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Sat, 21 Jul 2012 13:02:44 +0000 (15:02 +0200)
src/tincctl.c

index b944e5c..a3688ec 100644 (file)
@@ -1234,6 +1234,14 @@ static int cmd_config(int argc, char *argv[]) {
                        fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
                        return 1;
                }
+
+               // Add newline if it is missing...
+               if(*buf1 && buf1[strlen(buf1) - 1] != '\n') {
+                       if(fputc('\n', tf) < 0) {
+                               fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
+                               return 1;
+                       }
+               }
        }
 
        // Make sure we read everything...