summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/wafsamba/samba_abi.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_abi.py b/buildtools/wafsamba/samba_abi.py
index 6a8e4bcef00..682f4e897b5 100644
--- a/buildtools/wafsamba/samba_abi.py
+++ b/buildtools/wafsamba/samba_abi.py
@@ -42,7 +42,8 @@ def normalise_signature(sig):
def normalise_varargs(sig):
'''cope with older versions of gdb'''
sig = re.sub(r',\s\.\.\.', '', sig)
- return sig
+ # Make sure we compare bytes and not strings
+ return bytes(sig, encoding='utf-8').decode('unicode_escape')
def parse_sigs(sigs, abi_match):