Skip to content

Commit 0405b3e

Browse files
style: remove trailing whitespace (#35)
This was achieved by saving all files while respecting wireshark's .editorconfig
1 parent 75d932d commit 0405b3e

21 files changed

+772
-772
lines changed

CODE_OF_CONDUCT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,11 @@ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118118
version 2.0, available at
119119
[https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0].
120120

121-
Community Impact Guidelines were inspired by
121+
Community Impact Guidelines were inspired by
122122
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
123123

124124
For answers to common questions about this code of conduct, see the FAQ at
125-
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available
125+
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available
126126
at [https://www.contributor-covenant.org/translations][translations].
127127

128128
[homepage]: https://www.contributor-covenant.org

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ This project is a plugin for wireshark that will dissect Solace SMF protocol.
1616
3. Unzip the folder and place the .dll (Windows) or .so (Mac/Linux) file in the Wireshark plugin folder, under `epan`. The plugin folder path varies for each OS.
1717

1818
### Windows Plugin Folder
19-
Personal Plugin Folder:
19+
Personal Plugin Folder:
2020

2121
`%APPDATA%\Roaming\Wireshark\plugins\4.0\epan`
2222

23-
Global Plugin Folder:
23+
Global Plugin Folder:
2424

2525
`C:\Program Files\Wireshark\plugins\4.0\plugins\epan`
2626

2727
### macOS/Linux Plugin Folder
28-
Personal Plugin Folder:
28+
Personal Plugin Folder:
2929

3030
`~/.local/lib/wireshark/plugins/epan`
3131

32-
See [Wireshark Documentation on Plugin Folders](https://www.wireshark.org/docs/wsug_html_chunked/ChPluginFolders.html) for more information on installing plugins.
32+
See [Wireshark Documentation on Plugin Folders](https://www.wireshark.org/docs/wsug_html_chunked/ChPluginFolders.html) for more information on installing plugins.
3333

3434
### Finding Plugin Folders and Verify Installation
3535

@@ -54,7 +54,7 @@ Use a cmd prompt with admin privilege:
5454
```
5555
cd base-directory-of-wireshark-smf-plugin
5656
mkdir build
57-
mklink CMakeListsCustom.txt ..\src\CMakeListsCustom.txt
57+
mklink CMakeListsCustom.txt ..\src\CMakeListsCustom.txt
5858
cd plugins\epan
5959
mklink /D smf ..\..\..\src\smf
6060
```

src/smf/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ add_wireshark_plugin_library(smf epan)
6868
target_include_directories(smf SYSTEM PRIVATE ${ZLIB_INCLUDE_DIRS})
6969
target_link_libraries(smf epan ${ZLIB_LIBRARIES})
7070

71-
install_plugin(smf epan)
71+
install_plugin(smf epan)
7272

7373
#[[
7474
install(TARGETS smf

src/smf/Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ abi_incdirs = $(subst -I,NEWLINE,$(filter -I%,$(WS_CFLAGS) -I$(abs_top_srcdir) -
514514
abi_sysdirs = $(subst -isystem,NEWLINE,$(filter -isystem%,$(WS_CFLAGS)))
515515
abi_includes = $(abi_incdirs) $(abi_sysdirs)
516516
PLUGIN_CPPFLAGS = $(INCLUDEDIRS) $(WS_CPPFLAGS) $(GLIB_CFLAGS)
517-
PLUGIN_CFLAGS =
517+
PLUGIN_CFLAGS =
518518
PLUGIN_LDFLAGS = -module -avoid-version
519519

520520
#
@@ -766,7 +766,7 @@ clean-pluginLTLIBRARIES:
766766
echo "rm -f \"$${dir}/so_locations\""; \
767767
rm -f "$${dir}/so_locations"; \
768768
done
769-
smf.la: $(smf_la_OBJECTS) $(smf_la_DEPENDENCIES)
769+
smf.la: $(smf_la_OBJECTS) $(smf_la_DEPENDENCIES)
770770
$(AM_V_CCLD)$(smf_la_LINK) -rpath $(plugindir) $(smf_la_OBJECTS) $(smf_la_LIBADD) $(LIBS)
771771

772772
mostlyclean-compile:

0 commit comments

Comments
 (0)