aboutsummaryrefslogtreecommitdiffstats
path: root/tty.c
diff options
context:
space:
mode:
authorSteve Slaven <bpk@hoopajoo.net>2005-03-21 18:40:47 (GMT)
committerSteve Slaven <bpk@hoopajoo.net>2005-03-21 18:40:47 (GMT)
commitcb2555e19237930a25989a7cd2bee4589f1d515d (patch)
tree524bf902278ca892821a6be886ac3b51cfa9910f /tty.c
parent22e2e8b44054a4e95dd473079f0e7800284b0d20 (diff)
downloadpowwow-cb2555e19237930a25989a7cd2bee4589f1d515d.zip
powwow-cb2555e19237930a25989a7cd2bee4589f1d515d.tar.gz
powwow-cb2555e19237930a25989a7cd2bee4589f1d515d.tar.bz2
Convert all `' to "" as per the powwow-1.2.6-dain patch. Note I did not apply
the patch since 1.2.7 has some differences to 1.2.5 with regard to command handling and things, so I'm applying the diff parts by hand mostly
Diffstat (limited to 'tty.c')
-rw-r--r--tty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tty.c b/tty.c
index c2d0cb7..0ac7b3c 100644
--- a/tty.c
+++ b/tty.c
@@ -347,7 +347,7 @@ void tty_bootstrap __P0 (void)
break;
case 0:
fprintf(stderr,
- "There is no entry for `%s' in the terminal data base.\n", term);
+ "There is no entry for \"%s\" in the terminal data base.\n", term);
fprintf(stderr,
"Please set your $TERM environment variable correctly.\n");
exit(1);
@@ -359,7 +359,7 @@ void tty_bootstrap __P0 (void)
if (np->len) *np->len += i;
} else if (np->critic) {
fprintf(stderr,
- "Your `%s' terminal is not powerful enough, missing `%s'.\n",
+ "Your \"%s\" terminal is not powerful enough, missing \"%s\".\n",
term, np->cap);
exit(1);
}