Get rid of trailing white space.

Change-Id: I48754b57693276cffd3a89d70c019878014623fe
Reviewed-on: https://code.wireshark.org/review/14945
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2016-04-16 19:33:04 -07:00
parent 8c3b36deb8
commit e63d935270
1 changed files with 1 additions and 1 deletions

View File

@ -2046,7 +2046,7 @@ conversation_dissector_is_http(conversation_t *conv, guint32 frame_num)
if (conv == NULL)
return FALSE;
conv_handle = conversation_get_dissector(conv, frame_num);
return conv_handle == http_handle ||
return conv_handle == http_handle ||
conv_handle == http_tcp_handle ||
conv_handle == http_sctp_handle;
}