diff --git a/test/l2test.c b/test/l2test.c
index c5b6efe..7f9f007 100644
--- a/test/l2test.c
+++ b/test/l2test.c
static int rfcmode = 0;
static int master = 0;
static int auth = 0;
-static int encrypt = 0;
+static int encr = 0;
static int secure = 0;
static int socktype = SOCK_SEQPACKET;
static int linger = 0;
opt |= L2CAP_LM_MASTER;
if (auth)
opt |= L2CAP_LM_AUTH;
- if (encrypt)
+ if (encr)
opt |= L2CAP_LM_ENCRYPT;
if (secure)
opt |= L2CAP_LM_SECURE;
opt |= L2CAP_LM_MASTER;
if (auth)
opt |= L2CAP_LM_AUTH;
- if (encrypt)
+ if (encr)
opt |= L2CAP_LM_ENCRYPT;
if (secure)
opt |= L2CAP_LM_SECURE;
break;
case 'E':
- encrypt = 1;
+ encr = 1;
break;
case 'S':
diff --git a/test/rctest.c b/test/rctest.c
index 417cb3f..58aa533 100644
--- a/test/rctest.c
+++ b/test/rctest.c
static int master = 0;
static int auth = 0;
-static int encrypt = 0;
+static int encr = 0;
static int secure = 0;
static int socktype = SOCK_STREAM;
static int linger = 0;
opt |= RFCOMM_LM_MASTER;
if (auth)
opt |= RFCOMM_LM_AUTH;
- if (encrypt)
+ if (encr)
opt |= RFCOMM_LM_ENCRYPT;
if (secure)
opt |= RFCOMM_LM_SECURE;
opt |= RFCOMM_LM_MASTER;
if (auth)
opt |= RFCOMM_LM_AUTH;
- if (encrypt)
+ if (encr)
opt |= RFCOMM_LM_ENCRYPT;
if (secure)
opt |= RFCOMM_LM_SECURE;
break;
case 'E':
- encrypt = 1;
+ encr = 1;
break;
case 'S':