mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-05-30 00:04:49 -05:00
Cosmetic: use `appname' in more places, so that Unix PuTTYtel announces itself
thus. [originally from svn r8075]
This commit is contained in:
parent
6e447b9f18
commit
f405259798
@ -40,7 +40,10 @@ Backend *select_backend(Config *cfg)
|
|||||||
|
|
||||||
int cfgbox(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;
|
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)
|
char *make_default_wintitle(char *hostname)
|
||||||
{
|
{
|
||||||
return dupcat(hostname, " - PuTTY", NULL);
|
return dupcat(hostname, " - ", appname, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user