summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcheck_libmap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/check_libmap.sh b/check_libmap.sh
index be2a3d3..c8931f9 100755
--- a/check_libmap.sh
+++ b/check_libmap.sh
@@ -5,7 +5,7 @@ for file in include/libipset/*.h; do
esac
grep ^extern $file | sed -r -e 's/\(.*//' -e 's/.* \*?//' | egrep -v '\[|\;'
done | while read symbol; do
- if [ -z "$symbol" ]; then
+ if [ -z "$symbol" -o "$symbol" = '{' ]; then
continue
fi
if [ -z "`grep \" $symbol\;\" lib/libipset.map`" ]; then