Spelling fixes

Change-Id: Id1511c5022a239db5d0b44ec7adf048cca307751
This commit is contained in:
Ruben Undheim 2018-09-25 22:59:34 +02:00 committed by laforge
parent 43f16ec403
commit 55fcf111e1
6 changed files with 11 additions and 11 deletions

View File

@ -2213,7 +2213,7 @@ static void mmctx_timer_cb(void *_mm)
rc = gsm48_tx_gmm_auth_ciph_req(mm, &at->vec, at->key_seq, false);
if (rc < 0)
LOGMMCTXP(LOGL_ERROR, mm, "failed sending Auth. & Ciph. Reuqest: %s \n", strerror(-rc));
LOGMMCTXP(LOGL_ERROR, mm, "failed sending Auth. & Ciph. Request: %s \n", strerror(-rc));
else
osmo_timer_schedule(&mm->timer, sgsn->cfg.timers.T3360, 0);
break;

View File

@ -103,9 +103,9 @@ static const struct rate_ctr_group_desc pdpctx_ctrg_desc = {
static const struct rate_ctr_desc sgsn_ctr_description[] = {
{ "llc:dl_bytes", "Count sent LLC bytes before giving it to the bssgp layer" },
{ "llc:ul_bytes", "Count sucessful received LLC bytes (encrypt & fcs correct)" },
{ "llc:dl_packets", "Count sucessful sent LLC packets before giving it to the bssgp layer" },
{ "llc:ul_packets", "Count sucessful received LLC packets (encrypt & fcs correct)" },
{ "llc:ul_bytes", "Count successful received LLC bytes (encrypt & fcs correct)" },
{ "llc:dl_packets", "Count successful sent LLC packets before giving it to the bssgp layer" },
{ "llc:ul_packets", "Count successful received LLC packets (encrypt & fcs correct)" },
{ "gprs:attach_requested", "Received attach requests" },
{ "gprs:attach_accepted", "Sent attach accepts" },
{ "gprs:attach_rejected", "Sent attach rejects" },

View File

@ -94,7 +94,7 @@ int gprs_sndcp_dcomp_init(const void *ctx, struct gprs_sndcp_comp *comp_entity,
&rx_v42bis_data_handler, NULL,
V42BIS_MAX_OUTPUT_LENGTH);
LOGP(DSNDCP, LOGL_INFO,
"V.42bis data compression initalized.\n");
"V.42bis data compression initialized.\n");
return 0;
}

View File

@ -59,7 +59,7 @@ int gprs_sndcp_pcomp_init(const void *ctx, struct gprs_sndcp_comp *comp_entity,
slhc_init(ctx, comp_field->rfc1144_params->s01 + 1,
comp_field->rfc1144_params->s01 + 1);
LOGP(DSNDCP, LOGL_INFO,
"RFC1144 header compression initalized.\n");
"RFC1144 header compression initialized.\n");
return 0;
}

View File

@ -243,7 +243,7 @@ static void print_help(struct cmdline_cfg *ccfg)
static void list_categories(void)
{
printf("Avaliable debug categories:\n");
printf("Available debug categories:\n");
int i;
for (i = 0; i < gtphub_log_info.num_cat; ++i) {
if (!gtphub_log_info.cat[i].name)

View File

@ -1309,7 +1309,7 @@ DEFUN(cfg_no_comp_rfc1144, cfg_no_comp_rfc1144_cmd,
DEFUN(cfg_comp_rfc1144, cfg_comp_rfc1144_cmd,
"compression rfc1144 active slots <1-256>",
COMPRESSION_STR
"RFC1144 Header compresion scheme\n"
"RFC1144 Header compression scheme\n"
"Compression is actively proposed\n"
"Number of compression state slots\n"
"Number of compression state slots\n")
@ -1323,7 +1323,7 @@ DEFUN(cfg_comp_rfc1144, cfg_comp_rfc1144_cmd,
DEFUN(cfg_comp_rfc1144p, cfg_comp_rfc1144p_cmd,
"compression rfc1144 passive",
COMPRESSION_STR
"RFC1144 Header compresion scheme\n"
"RFC1144 Header compression scheme\n"
"Compression is available on request\n")
{
g_cfg->pcomp_rfc1144.active = 0;
@ -1343,7 +1343,7 @@ DEFUN(cfg_no_comp_v42bis, cfg_no_comp_v42bis_cmd,
DEFUN(cfg_comp_v42bis, cfg_comp_v42bis_cmd,
"compression v42bis active direction (ms|sgsn|both) codewords <512-65535> strlen <6-250>",
COMPRESSION_STR
"V.42bis data compresion scheme\n"
"V.42bis data compression scheme\n"
"Compression is actively proposed\n"
"Direction in which the compression shall be active (p0)\n"
"Compress ms->sgsn direction only\n"
@ -1376,7 +1376,7 @@ DEFUN(cfg_comp_v42bis, cfg_comp_v42bis_cmd,
DEFUN(cfg_comp_v42bisp, cfg_comp_v42bisp_cmd,
"compression v42bis passive",
COMPRESSION_STR
"V.42bis data compresion scheme\n"
"V.42bis data compression scheme\n"
"Compression is available on request\n")
{
g_cfg->dcomp_v42bis.active = 0;