summaryrefslogtreecommitdiffstats
path: root/hcid/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'hcid/parser.y')
-rw-r--r--hcid/parser.y10
1 files changed, 1 insertions, 9 deletions
diff --git a/hcid/parser.y b/hcid/parser.y
index b13fbb13..aae915e9 100644
--- a/hcid/parser.y
+++ b/hcid/parser.y
@@ -59,7 +59,7 @@ int yyerror(char *s);
%token K_OPTIONS K_DEVICE
%token K_AUTOINIT K_SECURITY K_PAIRING
-%token K_PTYPE K_NAME K_CLASS K_VOICE K_PAGETO K_LM K_LP K_AUTH K_ENCRYPT K_ISCAN K_PSCAN K_DISCOVTO
+%token K_PTYPE K_NAME K_CLASS K_VOICE K_PAGETO K_LM K_LP K_ISCAN K_PSCAN K_DISCOVTO
%token K_PASSKEY
%token K_YES K_NO
@@ -199,14 +199,6 @@ device_opt:
parser_device->discovto = $2;
}
- | K_AUTH bool {
- parser_device->auth = $2;
- }
-
- | K_ENCRYPT bool {
- parser_device->encrypt = $2;
- }
-
| K_ISCAN bool {
if ($2)
parser_device->scan |= SCAN_INQUIRY;