summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDebian Mobcom Maintainers <Debian-mobcom-maintainers@lists.alioth.debian.org>2018-04-17 19:47:14 +0200
committerThorsten Alteholz <debian@alteholz.de>2018-04-17 19:47:14 +0200
commit5e0870ceec5224e8d18f8a5bceaec0785452ce06 (patch)
treedd197d1cb803e2a5b98b5346d12f9d1a3413b4e9
parent78e5284e21dcb07687c9282f4becd45d49c6d5fa (diff)
spelling
=================================================================== Gbp-Pq: Name spelling.patch
-rw-r--r--doc/sgsnemu.82
-rw-r--r--gtp/gtp.c12
-rw-r--r--gtp/pdp.h2
-rw-r--r--gtp/queue.h2
-rw-r--r--lib/ippool.c2
-rw-r--r--sgsnemu/sgsnemu.c2
6 files changed, 11 insertions, 11 deletions
diff --git a/doc/sgsnemu.8 b/doc/sgsnemu.8
index 197bd5d..273cf77 100644
--- a/doc/sgsnemu.8
+++ b/doc/sgsnemu.8
@@ -238,7 +238,7 @@ and 15.
.I msisdn
to use when connecting to the GGSN (default = 46702123456). MSISDN is
an abbreviation of International Mobile Integrated Services Digital
-Network. Effectly a phone number in international format without the
+Network. Effectively a phone number in international format without the
leading 00 or 011. See the
.I contexts
option for the the use of the
diff --git a/gtp/gtp.c b/gtp/gtp.c
index 3051aaa..15b9f55 100644
--- a/gtp/gtp.c
+++ b/gtp/gtp.c
@@ -317,7 +317,7 @@ static uint32_t get_tei(void *pack)
*
* Echo: Automatically dublicates the original response
* Create pdp context: The SGSN may send create context request even if
- * a context allready exist (imsi+nsapi?). This means that the reply will
+ * a context already exist (imsi+nsapi?). This means that the reply will
automatically dublicate the original response. It might however have
* side effects in the application which is asked twice to validate
* the login.
@@ -327,7 +327,7 @@ static uint32_t get_tei(void *pack)
*
* The correct solution will be to make a queue containing response messages.
* This queue should be checked whenever a request is received. If the
- * response is allready in the queue that response should be transmitted.
+ * response is already in the queue that response should be transmitted.
* It should be possible to find messages in this queue on the basis of
* the sequence number and peer GSN IP address (The sequense number is unique
* within each path). This need to be implemented by a hash table. Furthermore
@@ -1524,7 +1524,7 @@ int gtp_create_pdp_ind(struct gsn_t *gsn, int version,
if (!pdp_getimsi(&pdp_old, pdp->imsi, pdp->nsapi)) {
/* Found old pdp with same tid. Now the voodoo begins! */
/* 09.60 / 29.060 allows create on existing context to "steal" */
- /* the context which was allready established */
+ /* the context which was already established */
/* We check that the APN, selection mode and MSISDN is the same */
DEBUGP(DLGTP, "gtp_create_pdp_ind: Old context found\n");
if ((pdp->apn_req.l == pdp_old->apn_req.l)
@@ -1970,7 +1970,7 @@ int gtp_update_pdp_ind(struct gsn_t *gsn, int version,
/* Is this a dublicate ? */
if (!gtp_dublicate(gsn, version, peer, seq)) {
- return 0; /* We allready send of response once */
+ return 0; /* We already send of response once */
}
/* Decode information elements */
@@ -2100,7 +2100,7 @@ int gtp_update_pdp_ind(struct gsn_t *gsn, int version,
}
/* TEIC (conditional) */
- /* If TEIC is not included it means that we have allready received it */
+ /* If TEIC is not included it means that we have already received it */
/* TODO: From 29.060 it is not clear if TEI_C MUST be included for */
/* all updated contexts, or only for one of the linked contexts */
gtpie_gettv4(ie, GTPIE_TEI_C, 0, &pdp->teic_gn);
@@ -2446,7 +2446,7 @@ int gtp_delete_pdp_ind(struct gsn_t *gsn, int version,
/* Is this a dublicate ? */
if (!gtp_dublicate(gsn, version, peer, seq)) {
- return 0; /* We allready send off response once */
+ return 0; /* We already send off response once */
}
/* Find the linked context in question */
diff --git a/gtp/pdp.h b/gtp/pdp.h
index f1d8ad6..55ab435 100644
--- a/gtp/pdp.h
+++ b/gtp/pdp.h
@@ -96,7 +96,7 @@ struct ul255_t {
* With GTP version 1 it is possible to establish multiple PDP
* contexts with the same IP address. With this scheme the first
* context is established as normal. Following contexts are
- * established by referencing one of the allready existing ones. Each
+ * established by referencing one of the already existing ones. Each
* context is uniquely identified by IMSI and NSAPI. Each context is
* allocated an tei_di, but they all share the same tei_c.
*
diff --git a/gtp/queue.h b/gtp/queue.h
index 2e253dd..409f006 100644
--- a/gtp/queue.h
+++ b/gtp/queue.h
@@ -51,7 +51,7 @@ struct queue_t {
int queue_new(struct queue_t **queue);
/* Deallocates queue structure */
int queue_free(struct queue_t *queue);
-/* Find a new queue element. Return EOF if allready full */
+/* Find a new queue element. Return EOF if already full */
int queue_newmsg(struct queue_t *queue, struct qmsg_t **qmsg,
struct sockaddr_in *peer, uint16_t seq);
/* Remove an element from the queue. */
diff --git a/lib/ippool.c b/lib/ippool.c
index 55a41d0..69a7995 100644
--- a/lib/ippool.c
+++ b/lib/ippool.c
@@ -457,7 +457,7 @@ int ippool_newip(struct ippool_t *this, struct ippoolm_t **member,
if (p2) { /* Was allocated from dynamic address pool */
if (p2->inuse) {
SYS_ERR(DIP, LOGL_ERROR, 0,
- "IP address allready in use");
+ "IP address already in use");
return -GTPCAUSE_SYS_FAIL; /* Allready in use / Should not happen */
}
diff --git a/sgsnemu/sgsnemu.c b/sgsnemu/sgsnemu.c
index 23cf208..3d86dc8 100644
--- a/sgsnemu/sgsnemu.c
+++ b/sgsnemu/sgsnemu.c
@@ -1457,7 +1457,7 @@ static int create_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
if (!strcmp(accept_ra, "0") ||
(!strcmp(forwarding, "1") && !strcmp(accept_ra, "1"))) {
printf("%s is %s, i.e. your tun device is not configured to accept "
- "router advertisements; SLAAC will not suceed, please "
+ "router advertisements; SLAAC will not succeed, please "
"fix your setup!\n");
}
free(accept_ra);