aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2020-10-02 19:17:00 -0700
committerGuy Harris <gharris@sonic.net>2020-10-02 20:13:42 -0700
commite013c5ec7f175f4e12f20f201d639e64609960de (patch)
tree4eab00bd869dc44e1898e228d5fdcc42db2d8417 /tshark.c
parent22e7ddb63789ff603641be116ee24834ca7631f9 (diff)
Clean up URLs.
Add ui/urls.h to define some URLs on various of our websites. Use the GitLab URL for the wiki. Add a macro to generate wiki URLs. Update wiki URLs in comments etc. Use the #defined URL for the docs page in WelcomePage::on_helpLabel_clicked; that removes the last user of topic_online_url(), so get rid of it and swallow it up into topic_action_url().
Diffstat (limited to 'tshark.c')
-rw-r--r--tshark.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tshark.c b/tshark.c
index a08b9b64d7..d3e78fff3a 100644
--- a/tshark.c
+++ b/tshark.c
@@ -43,6 +43,7 @@
#include <ui/clopts_common.h>
#include <ui/cmdarg_err.h>
+#include <ui/urls.h>
#include <wsutil/filesystem.h>
#include <wsutil/file_util.h>
#include <wsutil/socket.h>
@@ -2064,7 +2065,7 @@ main(int argc, char *argv[])
"Sorry, but TShark has to terminate now.\n"
"\n"
"More information and workarounds can be found at\n"
- "https://wiki.wireshark.org/KnownBugs/OutOfMemory\n");
+ WS_WIKI_URL("KnownBugs/OutOfMemory") "\n");
status = PROCESS_FILE_ERROR;
}
ENDTRY;
@@ -2573,7 +2574,7 @@ capture(void)
"Sorry, but TShark has to terminate now.\n"
"\n"
"More information and workarounds can be found at\n"
- "https://wiki.wireshark.org/KnownBugs/OutOfMemory\n");
+ WS_WIKI_URL("KnownBugs/OutOfMemory") "\n");
abort();
}
ENDTRY;