From 3e515303a1eaaf947d6bbd8d22ea8b4853234f90 Mon Sep 17 00:00:00 2001 From: phl0 Date: Thu, 30 Mar 2017 09:33:24 +0200 Subject: [PATCH] Rename protocols --- src/cdextraclient.h | 2 +- src/cdplusclient.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cdextraclient.h b/src/cdextraclient.h index 757aad5..2b42b65 100644 --- a/src/cdextraclient.h +++ b/src/cdextraclient.h @@ -48,7 +48,7 @@ public: // identity int GetProtocol(void) const { return PROTOCOL_DEXTRA; } int GetProtocolRevision(void) const { return m_ProtRev; } - const char *GetProtocolName(void) const { return "Dextra"; } + const char *GetProtocolName(void) const { return "DExtra"; } bool IsNode(void) const { return true; } // status diff --git a/src/cdplusclient.h b/src/cdplusclient.h index 389a228..c8ed9e1 100644 --- a/src/cdplusclient.h +++ b/src/cdplusclient.h @@ -47,7 +47,7 @@ public: // identity int GetProtocol(void) const { return PROTOCOL_DPLUS; } - const char *GetProtocolName(void) const { return "Dplus"; } + const char *GetProtocolName(void) const { return "DPlus"; } bool IsNode(void) const { return true; } bool IsDextraDongle(void) const { return m_bDextraDongle; } void SetDextraDongle(void) { m_bDextraDongle = true; }