mswsp: check pipe name in case insensitive manner

Change-Id: I33cde794a3a7314247b46b6e8fded6ee528450cc
Reviewed-on: https://code.wireshark.org/review/34304
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Jiajun Wang 2019-08-17 00:52:29 +08:00 committed by Anders Broman
parent 9c760ab2ad
commit a1b1194024
1 changed files with 1 additions and 1 deletions

View File

@ -8019,7 +8019,7 @@ static int dissect_mswsp_smb2(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tre
dcerpc_fetch_polhnd_data(&si->saved->policy_hnd, &fid_name, NULL, &open_frame, &close_frame, pinfo->num);
}
if (!fid_name || strcmp(fid_name, "File: MsFteWds") != 0) {
if (!fid_name || g_ascii_strcasecmp(fid_name, "File: MsFteWds") != 0) {
return 0;
}