From 74f4b2c8b260172aa4f09dc294d807d59657762d Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Tue, 12 Jan 2021 17:56:47 +0100 Subject: [PATCH] [airplay] Fixup --- src/outputs/airplay.c | 2 +- src/outputs/pair_homekit.c | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/src/outputs/airplay.c b/src/outputs/airplay.c index 96346969..3814f3a6 100644 --- a/src/outputs/airplay.c +++ b/src/outputs/airplay.c @@ -3138,7 +3138,7 @@ start_failure(struct airplay_session *rs) // function was called because the encrypted request (SETUP) timed out if (device->auth_key) { - DPRINTF(E_LOG, L_AIRPLAY, "Clearing '%s' pairing keys, you need to pair again\n", rs->address); + DPRINTF(E_LOG, L_AIRPLAY, "Clearing '%s' pairing keys, you need to pair again\n", rs->devname); free(device->auth_key); device->auth_key = NULL; diff --git a/src/outputs/pair_homekit.c b/src/outputs/pair_homekit.c index 466098f5..bc52ef68 100644 --- a/src/outputs/pair_homekit.c +++ b/src/outputs/pair_homekit.c @@ -518,15 +518,6 @@ typedef enum { } TLVType; -typedef enum { - TLVMethod_PairSetup = 1, - TLVMethod_PairVerify = 2, - TLVMethod_AddPairing = 3, - TLVMethod_RemovePairing = 4, - TLVMethod_ListPairings = 5, -} TLVMethod; - - typedef enum { TLVError_Unknown = 1, // Generic error to handle unexpected errors TLVError_Authentication = 2, // Setup code or signature verification failed