diff --git a/src/modules/ims_dialog/dlg_hash.c b/src/modules/ims_dialog/dlg_hash.c index cfe0148e7bd..3249d06c092 100644 --- a/src/modules/ims_dialog/dlg_hash.c +++ b/src/modules/ims_dialog/dlg_hash.c @@ -1082,7 +1082,7 @@ static inline void log_next_state_dlg(const int event, const struct dlg_cell * d } /*! - * \brief Update a dialog state according a event and the old state + * \brief Update a dialog state according an event and the old state * * This functions implement the main state machine that update a dialog * state according a processed event and the current state. If necessary diff --git a/src/modules/ims_dialog/dlg_hash.h b/src/modules/ims_dialog/dlg_hash.h index ec3b7c4b17d..7faabfd4c90 100644 --- a/src/modules/ims_dialog/dlg_hash.h +++ b/src/modules/ims_dialog/dlg_hash.h @@ -40,7 +40,7 @@ #define DLG_STATE_UNCONFIRMED 1 /*!< unconfirmed dialog */ #define DLG_STATE_EARLY 2 /*!< early dialog */ #define DLG_STATE_CONFIRMED 4 /*!< confirmed dialog */ -#define DLG_STATE_CONFIRMED_NA 5 /*!< confirmed dialog without a ACK yet */ +#define DLG_STATE_CONFIRMED_NA 5 /*!< confirmed dialog without an ACK yet */ #define DLG_STATE_DELETED 6 /*!< deleted dialog */ #define DLG_STATE_CONCURRENTLY_CONFIRMED 7 /*!< confirmed concurrent dailogs */ @@ -386,7 +386,7 @@ void ref_dlg(struct dlg_cell *dlg, unsigned int cnt); /*! - * \brief Update a dialog state according a event and the old state + * \brief Update a dialog state according an event and the old state * * This functions implement the main state machine that update a dialog * state according a processed event and the current state. If necessary diff --git a/src/modules/ims_dialog/dlg_req_within.c b/src/modules/ims_dialog/dlg_req_within.c index cba9a391308..76bf5a47c92 100644 --- a/src/modules/ims_dialog/dlg_req_within.c +++ b/src/modules/ims_dialog/dlg_req_within.c @@ -352,7 +352,7 @@ int dlg_terminate(struct dlg_cell *dlg, struct sip_msg *msg, str *reason, int si { //well this is the transaction of a subsequent request within the dialog //and the dialog is not confirmed yet, so its a PRACK or an UPDATE - //could also be an options, but the important thing is how am i going to get + //could also be an option, but the important thing is how am i going to get //the transaction of the invite, that is the one i have to cancel LM_WARN("this is not my transaction so where am i?\n"); return 1; //TODO - need to check why we got in here once before? this crashed on t_reply as t seemed invalid diff --git a/src/modules/ims_dialog/doc/ims_dialog_admin.xml b/src/modules/ims_dialog/doc/ims_dialog_admin.xml index df3669cab68..5a2ddc95857 100644 --- a/src/modules/ims_dialog/doc/ims_dialog_admin.xml +++ b/src/modules/ims_dialog/doc/ims_dialog_admin.xml @@ -604,7 +604,7 @@ unset_dlg_profile("caller","$fu"); ... if (is_in_profile("inbound_call")) { - log("this request belongs to a inbound call\n"); + log("this request belongs to an inbound call\n"); } ... if (is_in_profile("caller","XX")) { diff --git a/src/modules/ims_dialog/doc/ims_dialog_faq.xml b/src/modules/ims_dialog/doc/ims_dialog_faq.xml index 4b5064788b7..a881818f891 100644 --- a/src/modules/ims_dialog/doc/ims_dialog_faq.xml +++ b/src/modules/ims_dialog/doc/ims_dialog_faq.xml @@ -29,7 +29,7 @@ - Why is there a ims_dialog module and a dialog module? + Why is there an ims_dialog module and a dialog module?