aboutsummaryrefslogtreecommitdiffstats
path: root/tools/compare-abis.sh
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-11-15 15:28:20 +0000
committerBill Meier <wmeier@newsguy.com>2011-11-15 15:28:20 +0000
commit47b290c7f55a0031a8b7f847ac200fe7759f1397 (patch)
tree3aecb821b99947ccd2a983df4b2d69a7e92c09ad /tools/compare-abis.sh
parent49a47e974512ab325d1e0a7eaf6bb0761dc0b580 (diff)
Fix some props
svn path=/trunk/; revision=39851
Diffstat (limited to 'tools/compare-abis.sh')
-rwxr-xr-xtools/compare-abis.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/compare-abis.sh b/tools/compare-abis.sh
index 4e705a4fc2..a3b7f8e490 100755
--- a/tools/compare-abis.sh
+++ b/tools/compare-abis.sh
@@ -1,7 +1,8 @@
#!/bin/bash
+
# Compare ABIs of two Wireshark working copies
-# $Id: $
+# $Id$
function acc () {
LIBNAME=$1
@@ -29,8 +30,8 @@ V2_PATH=$2
acc libwiretap wiretap $V1_PATH $V2_PATH
RET=$?
-acc libwsutil wsutil $V1_PATH $V2_PATH
+acc libwsutil wsutil $V1_PATH $V2_PATH
RET=$(($RET + $?))
-acc libwireshark epan $V1_PATH $V2_PATH
+acc libwireshark epan $V1_PATH $V2_PATH
exit $(($RET + $?))