aboutsummaryrefslogtreecommitdiffstats
path: root/print.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2008-11-26 07:34:57 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2008-11-26 07:34:57 +0000
commitcbf6045254cd329ba15800d048ecef2cacbb2eba (patch)
treee55a911a3a0f64d03f84429ec9c7f33396396c0d /print.c
parente12599f5c9a3b21f6a13b6beb438dd9823dc216b (diff)
Improve title and remove Ethereal legacy.
svn path=/trunk/; revision=26850
Diffstat (limited to 'print.c')
-rw-r--r--print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/print.c b/print.c
index 69cc1c7c33..a4c8817262 100644
--- a/print.c
+++ b/print.c
@@ -1114,7 +1114,7 @@ print_preamble_ps(print_stream_t *self, gchar *filename)
fputs("\n", output->fh);
fputs("%% the page title\n", output->fh);
ps_clean_string(psbuffer, filename, MAX_PS_LINE_LENGTH);
- fprintf(output->fh, "/eth_pagetitle (%s - Wireshark " VERSION "%s) def\n", psbuffer, wireshark_svnversion);
+ fprintf(output->fh, "/ws_pagetitle (%s - Wireshark " VERSION "%s) def\n", psbuffer, wireshark_svnversion);
fputs("\n", output->fh);
return !ferror(output->fh);
}