Give full path to unconfigured tinc-up script.
authorGuus Sliepen <guus@tinc-vpn.org>
Sun, 8 Dec 2013 20:31:50 +0000 (21:31 +0100)
committerGuus Sliepen <guus@tinc-vpn.org>
Sun, 8 Dec 2013 20:31:50 +0000 (21:31 +0100)
src/tincctl.c

index a986af7633e69d9e7cf28b3d6956e9841e1335bd..83efc935655c80d869a4015412e1a2f382600693 100644 (file)
@@ -1777,7 +1777,7 @@ static int cmd_init(int argc, char *argv[]) {
                        fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
                        return 1;
                }
-               fprintf(f, "#!/bin/sh\n\necho 'Unconfigured tinc-up script, please edit!'\n\n#ifconfig $INTERFACE <your vpn IP address> netmask <netmask of whole VPN>\n");
+               fprintf(f, "#!/bin/sh\n\necho 'Unconfigured tinc-up script, please edit '$0'!'\n\n#ifconfig $INTERFACE <your vpn IP address> netmask <netmask of whole VPN>\n");
                fclose(f);
        }
 #endif