From 1705f46890cf636d5d2a717e9ca12e281f0aea79 Mon Sep 17 00:00:00 2001 From: jacob Date: Sun, 15 Jun 2008 13:26:08 +0000 Subject: [PATCH] Cosmetic: use `appname' in more places, so that Unix PuTTYtel announces itself thus. git-svn-id: svn://svn.tartarus.org/sgt/putty@8075 cda61777-01e9-0310-a592-d414129be87e --- unix/uxputty.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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); } /* -- 2.11.0