Fix some props

svn path=/trunk/; revision=39851
This commit is contained in:
Bill Meier 2011-11-15 15:28:20 +00:00
parent 49a47e9745
commit 47b290c7f5
2 changed files with 7 additions and 4 deletions

View File

@ -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 + $?))

View File

@ -1,6 +1,8 @@
#!/bin/bash
# check is Wireshark's ABI has ben changes since last release (tag)
# $Id$
# check if Wireshark's ABI has been changes since last release (tag)
set -e
if test -z "$1"; then