Message ID | CABmJbFVXijfFFVAgQE4JBGj-2W1-BZTKjr-HWfUUoc6wczprCw@mail.gmail.com |
---|---|
State | Accepted |
Headers | show |
On Tue, Mar 11, 2014 at 08:16:49PM +0400, Alexander Chemeris wrote: > > You are using OSMO_DEPRECTAED > > but you do not directly/indirectly the header file defining it. In fact > > gsm0411_smc.c fails to compile due this. > > Oops, forgot to include this in the patch, my apologies. > Updated patch is attached. wrong patch. I merged this one anyway after grepping my checkouts for the typo.
From 5977b6ed34960171aaf89e8d60f4693953a2c053 Mon Sep 17 00:00:00 2001 From: Alexander Chemeris <Alexander.Chemeris@gmail.com> Date: Sun, 9 Mar 2014 11:48:16 +0100 Subject: [PATCH] sms: Fix typo in a macros name: GSM340_SMS_RESSERVED -> GSM340_SMS_RESERVED. --- include/osmocom/gsm/protocol/gsm_04_11.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osmocom/gsm/protocol/gsm_04_11.h b/include/osmocom/gsm/protocol/gsm_04_11.h index f37152f..38dd553 100644 --- a/include/osmocom/gsm/protocol/gsm_04_11.h +++ b/include/osmocom/gsm/protocol/gsm_04_11.h @@ -122,7 +122,7 @@ enum sms_alphabet { #define GSM340_SMS_COMMAND_MS2SC 0x02 #define GSM340_SMS_SUBMIT_MS2SC 0x01 #define GSM340_SMS_SUBMIT_REP_SC2MS 0x01 -#define GSM340_SMS_RESSERVED 0x03 +#define GSM340_SMS_RESERVED 0x03 /* GSM 03.40 / Chapter 9.2.3.2: TP-More-Messages-to-Send */ #define GSM340_TP_MMS_MORE 0 -- 1.7.9.5