Skip to content

Commit

Permalink
ims_dialog: typos a/an
Browse files Browse the repository at this point in the history
  • Loading branch information
dilyanpalauzov authored and miconda committed Dec 16, 2022
1 parent dc499e2 commit dc5df5d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/modules/ims_dialog/dlg_hash.c
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/modules/ims_dialog/dlg_hash.h
Expand Up @@ -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 */

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/modules/ims_dialog/dlg_req_within.c
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/modules/ims_dialog/doc/ims_dialog_admin.xml
Expand Up @@ -604,7 +604,7 @@ unset_dlg_profile("caller","$fu");
<programlisting format="linespecific">
...
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")) {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/ims_dialog/doc/ims_dialog_faq.xml
Expand Up @@ -29,7 +29,7 @@
</qandaentry>
<qandaentry>
<question>
<para>Why is there a ims_dialog module and a dialog module?</para>
<para>Why is there an ims_dialog module and a dialog module?</para>
</question>
<answer>
<para>
Expand Down

0 comments on commit dc5df5d

Please sign in to comment.