aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2018-05-09Qt: remove unused vars in main_window_preferences_frame (CID 1435498).Dario Lombardo1-2/+0
Change-Id: Ibd20bdb3f88b3800d2bfa93e32d41c4827e24dcb Reviewed-on: https://code.wireshark.org/review/27421 Reviewed-by: Dario Lombardo <lomato@gmail.com> Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Peter Wu <peter@lekensteyn.nl>
2018-05-09proto: don't overrun buffer.Dario Lombardo1-1/+1
This is shown by a bunch of coverity reports all pointing at this line. Every buffer has a ITEM_LABEL_LENGTH, but label_mark_truncated access it at ITEM_LABEL_LENGTH (off-by-one). CIDs: 1435461 1435462 1435465 1435466 1435471 1435472 1435477 1435481 1435483 1435484 1435485 1435489 1435492 1435500 Fixes: v1.11.3-rc1-1837-gf94674d2fb ("truncate UTF-8 strings only at the boundary between two characters") Change-Id: I3781c36594f7db880bc9f76b64d261dbc498c0ce Reviewed-on: https://code.wireshark.org/review/27425 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Dario Lombardo <lomato@gmail.com>
2018-05-09extcap: Fix required indicatorRoland Knall1-1/+9
Fix required indicator on reset and change an assert to a simple drop-out Change-Id: I355980223f213fef8ee4c6ac7d6bcb0fce1a7913 Reviewed-on: https://code.wireshark.org/review/27416 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2018-05-09Qt: Add Show as UTF-16 in Show Packet BytesStig Bjørlykke2-0/+14
Change-Id: Ia7c7af162ac0010e2a5b83caf1ac467012432567 Reviewed-on: https://code.wireshark.org/review/27420 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2018-05-09Qt: Add plural translationsStig Bjørlykke2-8/+9
Add plural translations in capture file dialog preview. Reworded text for "error after X records(s)" to use same format as similar messages. Change-Id: I7b2c8811a9c0c0f76587c5aad1a648a1b969f37a Reviewed-on: https://code.wireshark.org/review/27412 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2018-05-09Qt: Update frame selected in several casesStig Bjørlykke3-8/+15
Ensure that frameSelected(0) is emitted when not having a proto tree field selected because of: 1. No match when trying to restore selected field 2. Search selects a packet with no field to select 3. Current packet is deselected This will disable functionality which requires a selected field and updates the status bar according to selected field. Bug: 14658 Change-Id: I158fae4f26c02f718cee0030ef9e38b597876381 Reviewed-on: https://code.wireshark.org/review/27395 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Reviewed-by: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2018-05-09You have to set tm_isdst before calling mktime().Guy Harris1-0/+2
You either need to tell mktime() that 1) DST/Summer Time is in effect, 2) DST/Summer Time isn't in effect, or 3) we don't know whether DST/Summer Time is in effect, you figure it out. We set tm_isdst to -1, to choose option 3), which is what we want. Fixes Coverity CID 1435496. Change-Id: I0f22ef1201ee8abefb3fa75aa3432b021fb13cfd Reviewed-on: https://code.wireshark.org/review/27408 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2018-05-09You have to set tm_isdst before calling mktime().Guy Harris1-0/+1
You either need to tell mktime() that 1) DST/Summer Time is in effect, 2) DST/Summer Time isn't in effect, or 3) we don't know whether DST/Summer Time is in effect, you figure it out. We set tm_isdst to -1, to choose option 3), which is what we want. Fixes Coverity CID 1435496. Change-Id: Iff24e51807ab42c0e6d9629f72848ad9f8d325fb Reviewed-on: https://code.wireshark.org/review/27404 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2018-05-09Fix infinite loop.Guy Harris1-0/+1
If a variable is a count of items, and we're looping while the count is non-zero, we need to decrement it after every item we process. Fixes Coverity CID 1435501. Change-Id: Iabb0cb6276d4bcf4b1bdea9ec3ba943dac1b9938 Reviewed-on: https://code.wireshark.org/review/27402 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2018-05-09smb: fix memleak in export objectsPeter Wu1-3/+3
"aux_smb_fid_type_string" is used as "%s" argument for g_strdup_printf, there is no need to clone it. I checked all calls and "fid_type" should always be valid, but in case of a bug, let's not return a NULL pointer but "?". Found by Clang Static Analyzer. Change-Id: I09896638eb5512f22b3d1a227462499e12cedcde Reviewed-on: https://code.wireshark.org/review/27349 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: ronnie sahlberg <ronniesahlberg@gmail.com>
2018-05-08Windows: prioritize Npcap over WinPcapPascal Quantin2-27/+13
It is now considered stable enough to be our default capture driver if present Change-Id: I7f3cdabcbaea526949afa47164e520202e6b93f2 Reviewed-on: https://code.wireshark.org/review/27393 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2018-05-08sshdump/ciscodump: use groups in config.Dario Lombardo3-32/+34
Change-Id: I3d6689738aee32bf720e6ebca1d4462429fdc1eb Reviewed-on: https://code.wireshark.org/review/27397 Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com> Reviewed-by: Dario Lombardo <lomato@gmail.com>
2018-05-08dtls: Remove period from Version blurbStig Bjørlykke1-1/+1
Change-Id: I5e50554daf25d2b2e71795c28e393f08d117ad6f Reviewed-on: https://code.wireshark.org/review/27396 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2018-05-08Qt: fix IPv4 GeoIP lookup in endpoints dialogPascal Quantin1-1/+3
maxmind_db_lookup_ipv4() expects an address in network byte order Bug: 14656 Change-Id: Ie47e3ae44d305d040e409d42f4398f55ae8c2395 Reviewed-on: https://code.wireshark.org/review/27391 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Christopher Maynard Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2018-05-08sharkd: fix IPv4 GeoIP lookupPascal Quantin1-1/+2
maxmind_db_lookup_ipv4() expects an address in network byte order Change-Id: Iaff404e370d8a171fa27bf63cb3d827863e6b0ac Ping-Bug: 14656 Reviewed-on: https://code.wireshark.org/review/27390 Reviewed-by: Christopher Maynard Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2018-05-08extcap: Group argumentsRoland Knall6-34/+177
Group arguments together to better present them, as well as to have the possibility to better facilitate settings categories. The order of tabs is defined by the numbering of arguments and their appearance. If no tab can be found or no group has been defined for the argument, a default tab will be added. Change-Id: I032881193e09d4ad5d65c9f73fede87695acdace Reviewed-on: https://code.wireshark.org/review/27054 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2018-05-08Report the file name in the "#if/#endif mismatch" error.Guy Harris1-2/+4
Change-Id: I54d2b98e471e04a2ad0a8ecc036180af04bb8359 Reviewed-on: https://code.wireshark.org/review/27394 Petri-Dish: Guy Harris <guy@alum.mit.edu> Tested-by: Petri Dish Buildbot Reviewed-by: Guy Harris <guy@alum.mit.edu>
2018-05-08wiretap: make open_info_base[] constРоман Донченко1-1/+1
Change-Id: I1e0099d5301f08ee500f17529d6cc3733d3c9a4f Reviewed-on: https://code.wireshark.org/review/27392 Petri-Dish: Guy Harris <guy@alum.mit.edu> Tested-by: Petri Dish Buildbot Reviewed-by: Guy Harris <guy@alum.mit.edu>
2018-05-07Bluetooth: ATT: Fix description of few fieldsMichał Łabędzki1-7/+7
Copy-paste issue, fixed description names of: btatt.weight_scale_feature btatt.glucose_measurement.sequence_number btatt.glucose_measurement.type_and_sample_location btatt.record_access_control_point.response_code Change-Id: Ifbda28ab86bda0e3dde824c24449d3ed90f8da8f Reviewed-on: https://code.wireshark.org/review/27362 Petri-Dish: Michal Labedzki <michal.labedzki@wireshark.org> Reviewed-by: Michal Labedzki <michal.labedzki@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-05-07Bluetooth: Assigned Numbers: Add Mesh CharacteristicsMichał Łabędzki2-0/+148
Additional 65 characteristics to be done later. Change-Id: Ic7d9a868619d26a49b8e322d1f9bde0ab3753319 Reviewed-on: https://code.wireshark.org/review/27361 Petri-Dish: Michal Labedzki <michal.labedzki@wireshark.org> Reviewed-by: Michal Labedzki <michal.labedzki@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-05-07Bluetooth: GATT: Add prepare to implementing FTMS/FTMPMichał Łabędzki1-0/+260
Implement "usage" of those chatacteristics. Change-Id: I708537909b89f29df19e3bbac339ee37e890f2d0 Reviewed-on: https://code.wireshark.org/review/27360 Petri-Dish: Michal Labedzki <michal.labedzki@wireshark.org> Reviewed-by: Michal Labedzki <michal.labedzki@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-05-07gtp, gtpv2: fix memory leaks in association code (found via ASAN)Ivan Nardi2-13/+5
Change-Id: Id8891dffa3c4db3ec82de3a0597550eb73a1d25f Reviewed-on: https://code.wireshark.org/review/27380 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2018-05-07Revert "wiretap: DPA-400 logfile support"Guy Harris5-274/+0
This reverts commit dfd6eb5d68065b47cf19603f34300ed43ae5e858. This change cannot be submitted without change I5c0c7668bda969086d9d6e5069aad87e929f6340. Change-Id: Ieb22f4e9afa1742db861a291202a2790a4784e1b Reviewed-on: https://code.wireshark.org/review/27387 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2018-05-07wiretap: DPA-400 logfile supportDirk Eibach5-0/+274
Wiretap support for reading the Unigraf DPA-400 DisplayPort AUX channel monitor logfiles. Bug: 14651 Change-Id: I8d3c50575c9806dd04b40053db45564404bad103 Reviewed-on: https://code.wireshark.org/review/27312 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2018-05-07Refer to the bytes of the real checksum field if the checksum is missing or ↵Joerg Mayer1-11/+11
generated Change-Id: I6c7a5b1441b97604d2847f7b74abc7a9c9e98d2c Reviewed-on: https://code.wireshark.org/review/27381 Reviewed-by: Jörg Mayer <jmayer@loplof.de>
2018-05-07wiretap: Add a file_gets variant that returns a pointer to the NUL terminatorРоман Донченко2-3/+13
When using file_gets it's very difficult to determine how many characters were read, because you can't distinguish between an embedded NUL and a short line (note that the last line in a file may not have an LF at the end). While it's still possible to do it via prefilling the buffer with non-zero values, doing that is cumbersome, inefficient and error-prone. This new function makes the task much easier. The "p" in the name is meant to be reminiscent of the "p" in stpcpy. Change-Id: I468d5ee71e3b6289925860651ba61b369301b3c9 Reviewed-on: https://code.wireshark.org/review/27333 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2018-05-07pfcp: added IEs 132-139Joakim Karlsson1-17/+480
According to 3GPP TS 29.244 v15.1.0 Change-Id: I1d55314a269ee615bc1730eba70fed095cec3075 Reviewed-on: https://code.wireshark.org/review/27338 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-05-06Test: Make sure we run our display filter tests.Gerald Combs20-31/+70
Change the test suite list in CMakeLists.txt to a static list. Add a CTest coverage unit test. Change-Id: I8459f320a2d0707618d6d56abdfce80274fddd2d Reviewed-on: https://code.wireshark.org/review/27377 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org>
2018-05-06mac-nr: Break down the RAR UL GrantMartin Mathieson1-3/+76
Change-Id: I30df646ba49e1c73e2ba90c43578071841ff317a Reviewed-on: https://code.wireshark.org/review/27336 Petri-Dish: Martin Mathieson <martin.r.mathieson@googlemail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
2018-05-06IEC-61850 MMS INFO-Column extended with invokeID, domainID, itemIDKarl Knoebl3-76/+288
Change-Id: Id4e31cdcba5fcbb8f5f9ce967b97049dc4bb3e72 Reviewed-on: https://code.wireshark.org/review/27143 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2018-05-06sharkd: support for MaxMindDB.Jakub Zawadzki2-0/+16
Call maxmind_db_lookup_process() [via host_name_lookup_process()] before processing request. It's still buggy, webshark needs a refresh to show endpoint or conversation ipmap, but it's better than nothing. It seems to need refresh, cause maxmind_db_lookup_ipv[46] works only for cached entries. Also cause mmdbresolve is pipe-based, every sharkd need to have it own mmdbresolve process. Change-Id: I3d588d1fa9e9ba645cc3d0bff3d276b202159d21 Reviewed-on: https://code.wireshark.org/review/27335 Petri-Dish: Jakub Zawadzki <darkjames-ws@darkjames.pl> Tested-by: Petri Dish Buildbot Reviewed-by: Jakub Zawadzki <darkjames-ws@darkjames.pl>
2018-05-06[Automatic update for 2018-05-06]Gerald Combs4-9/+89
Update manuf, services enterprise numbers, translations, and other items. Change-Id: Idea7c88121649417e332099b0cb71042c809735a Reviewed-on: https://code.wireshark.org/review/27372 Reviewed-by: Gerald Combs <gerald@wireshark.org>
2018-05-05zbee-security: fix keyring memleaksPeter Wu1-3/+11
If zbee_security_parse_key fails, the cloned label was leaked. Updating The keyring contents was also leaked. Found by Clang Static Analyzer. Change-Id: I5ef8e890f5b2b37d562b7f7a85b046bea9559841 Reviewed-on: https://code.wireshark.org/review/27347 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Dario Lombardo <lomato@gmail.com>
2018-05-05travis: update to gcc-8 and clang-5Alexis La Goutte1-4/+9
Change-Id: I538f87253241ce3b399bf638514df73447622219 Reviewed-on: https://code.wireshark.org/review/27337 Reviewed-by: Dario Lombardo <lomato@gmail.com>
2018-05-05tcp: fix memleak in Follow TCP tap in error casesPeter Wu1-0/+6
If this not the first data segment and the data is somehow empty (overlap?) or if the packet is out-of-order, the whole data fragment and follow_record_t structure was leaked. Found by Clang Static Analyzer. Change-Id: I81dc7749c738938b14d2cf4ad41e624b15099da6 Fixes: v2.3.0rc0-1449-g66fa31415f ("tcp: Fix Follow TCP tap data and when its tapped.") Reviewed-on: https://code.wireshark.org/review/27348 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Dario Lombardo <lomato@gmail.com>
2018-05-05Test: Integrate ftsanity directly into our tests.Gerald Combs2-115/+48
Move tools/ftsanity.py to test/suite_unittests.py. Change-Id: I8582b19c0544d032eb0566bc1e82be385e904c11 Reviewed-on: https://code.wireshark.org/review/27341 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org>
2018-05-05Don't use dladdr() to get a pathname for the current executable().Guy Harris17-76/+46
Change-Id: I24ad11a659c2cb936f873339dc2b36ac9944280a Reviewed-on: https://code.wireshark.org/review/27359 Petri-Dish: Guy Harris <guy@alum.mit.edu> Tested-by: Petri Dish Buildbot Reviewed-by: Guy Harris <guy@alum.mit.edu>
2018-05-05Use dlget() and dlgetname() to get the executable path name on HP-UX.Guy Harris3-3/+31
That leaves only AIX (and, if we're looking at dead UN*Xes, IRIX and Tru64 UNIX) as platforms on which we can't fetch that. Change-Id: If7a6a425aba30e1abf82ecc66f6c28dc532a227c Reviewed-on: https://code.wireshark.org/review/27358 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2018-05-05On Solaris, check for getexecname in CMake.Guy Harris2-4/+13
We expect it to be checked for in wsutil/filesystem.c, so we should check for it. It's a Solarisism, so check for it only on Solaris. Change-Id: I09104c17d2ec91c74862b63e735c32a9d188f2a6 Reviewed-on: https://code.wireshark.org/review/27351 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2018-05-05plugin_if: fix small memory leak in ext_menubar_add_separatorPeter Wu1-1/+1
No need to clone memory as ext_menubar_add_generic_entry g_strdups the label argument. Found by Clang Static Analyzer. Change-Id: I7ffe3d0cae0093410f2015e6beb8b8e97a871b2a Fixes: v1.99.6rc0-213-geeed4d1121 ("UI: Implementing menus for plugins") Reviewed-on: https://code.wireshark.org/review/27342 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2018-05-05pfcp: fix typo.Dario Lombardo1-1/+1
Change-Id: I48adc5a3ae198b06401d7526e013436ee73a51fe Reviewed-on: https://code.wireshark.org/review/27340 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-05-05nettrace_3gpp_32_423: fix memleak and copy of uninitialized memoryPeter Wu1-10/+7
When protocol="map", but the name attribute value is invalid, a memleak occurs. Observe also that dissector_table_str is 22 bytes (21 characters plus nul) and rounding up to a multiple of 4 means that 2 bytes of uninitialized memory could be copied. Avoid that by copying the actual length. Memory leak was found by Clang Static Analyzer. Change-Id: I41f5b104449e108191e505611411a8fb18f1f5db Fixes: v2.1.0rc0-2545-g4b4c7a76c3 ("[Nettrace] Add parsing of some HSS records.") Reviewed-on: https://code.wireshark.org/review/27350 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-05-04Test: Add dftest to our tests.Gerald Combs33-206/+100
Move the dfilter tests and captures from tools to test. Change-Id: I2e6a6cc1d383c985ba07c76c93ae1c57d3c8f84c Reviewed-on: https://code.wireshark.org/review/27339 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org>
2018-05-04Get rid of more autotoolsisms.Guy Harris4-47/+3
Change-Id: I124732adf3c3da511c206932544b4d533404cfc5 Reviewed-on: https://code.wireshark.org/review/27332 Petri-Dish: Guy Harris <guy@alum.mit.edu> Tested-by: Petri Dish Buildbot Reviewed-by: Guy Harris <guy@alum.mit.edu>
2018-05-04docbook: add "-y" to all windows choco commands.Dario Lombardo1-13/+13
This speeds up the copy/paste step-by-step sequence. Change-Id: Ib2e3ee54c8c86b7357260ecaab5d129ef296a9e9 Reviewed-on: https://code.wireshark.org/review/27309 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-05-04g_slist_free_full: Use g_slist_free_full() in a couple of places.AndersBroman3-12/+7
Change-Id: I38617ee289196f9807cf285af60d670bd5477687 Reviewed-on: https://code.wireshark.org/review/27327 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-05-04CMake: fix build by not unnecessarily linking with wsutilPeter Wu2-4/+2
When built with -DCMAKE_BUILD_WITH_INSTALL_RPATH=1, make-taps and make-dissectors fail to run because they cannot locate libwsutil.so.0. Since v2.9.0rc0-178-gbb81bef535 ("glib: Get rid of GLIB_CHECK_VERSION as we now require 2.32.0") wsutil is definitely no longer needed. Change-Id: Ida269fdb5f2cba979e3776f57c1a6bf3d546fe5d Reviewed-on: https://code.wireshark.org/review/27329 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-05-04autotools: remove more makefiles.Dario Lombardo4-22/+0
Change-Id: Ie0aa418e0515b56f0abfbab4f4c5ebc9edd7b81b Reviewed-on: https://code.wireshark.org/review/27314 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-05-04l16_mono: fix a typo in CMakeLists.txtPascal Quantin1-1/+1
Change-Id: I344354fa50c14828dd5d430ac6a377766b0afeb6 Reviewed-on: https://code.wireshark.org/review/27328 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2018-05-04travis: use ninja for building.Dario Lombardo2-3/+3
Change-Id: I18cf4c79e6073955d8224c7a37f906ec54a8edbc Reviewed-on: https://code.wireshark.org/review/27324 Reviewed-by: Peter Wu <peter@lekensteyn.nl>