summaryrefslogtreecommitdiff
path: root/ui/util.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2015-07-15 12:17:00 +0200
committerMichael Mann <mmann78@netscape.net>2015-07-15 11:28:36 +0000
commit52e2908729c0d0d45df572ff3aaf3e41258c2d4e (patch)
tree907d7fcd92b5bf978c6b9ab4c453e275fef0d8e1 /ui/util.c
parent828358d22c6bcf0a1ade5b3ffaa8018a385bfc6c (diff)
downloadwireshark-52e2908729c0d0d45df572ff3aaf3e41258c2d4e.tar.gz
Filter UDP packets on port 3389 when capturing from a Remote Desktop session
As reported in https://www.wireshark.org/lists/wireshark-dev/201507/msg00069.html Change-Id: I171b934fd97748f17586ffcee8012fd4c0d156b1 Reviewed-on: https://code.wireshark.org/review/9642 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'ui/util.c')
-rw-r--r--ui/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/util.c b/ui/util.c
index f58abac20a..75dd273f72 100644
--- a/ui/util.c
+++ b/ui/util.c
@@ -328,7 +328,7 @@ const gchar *get_conn_cfilter(void) {
#ifdef _WIN32
} else if (GetSystemMetrics(SM_REMOTESESSION)) {
/* We have a remote session: http://msdn.microsoft.com/en-us/library/aa380798%28VS.85%29.aspx */
- g_string_printf(filter_str, "not tcp port 3389");
+ g_string_printf(filter_str, "not port 3389");
#endif /* _WIN32 */
} else {
return "";