X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/8b5ee9aa8123945b29d23ae0fcfdc22d299e1ba3..1705f46890cf636d5d2a717e9ca12e281f0aea79:/unix/uxputty.c diff --git a/unix/uxputty.c b/unix/uxputty.c index f42c428d..65b1ecaa 100644 --- a/unix/uxputty.c +++ b/unix/uxputty.c @@ -40,7 +40,10 @@ Backend *select_backend(Config *cfg) int cfgbox(Config *cfg) { - return do_config_box("PuTTY Configuration", cfg, 0, 0); + char *title = dupcat(appname, " Configuration", NULL); + int ret = do_config_box(title, cfg, 0, 0); + sfree(title); + return ret; } static int got_host = 0; @@ -105,7 +108,7 @@ int process_nonoption_arg(char *arg, Config *cfg, int *allow_launch) char *make_default_wintitle(char *hostname) { - return dupcat(hostname, " - PuTTY", NULL); + return dupcat(hostname, " - ", appname, NULL); } /*