Skip to content

Commit

Permalink
modules/ims_icscf: use INT_MAX instead of MAXINT
Browse files Browse the repository at this point in the history
  • Loading branch information
mslehto committed Feb 3, 2016
1 parent 888fd8e commit 5ac088f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
5 changes: 1 addition & 4 deletions modules/ims_icscf/cxdx_lir.c
Expand Up @@ -51,9 +51,6 @@
#include "mod.h"
#include "location.h"

#include "limits.h"
#define MAXINT INT_MAX

//we use pseudo variables to communicate back to config file this takes the result and converys to a return code, publishes it a pseudo variable
int create_lia_return_code(int result) {
int rc;
Expand Down Expand Up @@ -181,7 +178,7 @@ void async_cdp_lir_callback(int is_timeout, void *param, AAAMessage *lia, long e

success:
if (server_name.len) {
list = new_scscf_entry(server_name, MAXINT, data->orig);
list = new_scscf_entry(server_name, INT_MAX, data->orig);
} else {
list = I_get_capab_ordered(server_name, m_capab, m_capab_cnt, o_capab, o_capab_cnt, p_server_names, p_server_names_cnt, data->orig);
}
Expand Down
4 changes: 2 additions & 2 deletions modules/ims_icscf/scscf_list.c
Expand Up @@ -183,10 +183,10 @@ scscf_entry* I_get_capab_ordered(str scscf_name, int *m, int mcnt, int *o, int o
scscf_entry *list = 0;
int i, r;

if (scscf_name.len) list = I_add_to_scscf_list(list, scscf_name, MAXINT, orig);
if (scscf_name.len) list = I_add_to_scscf_list(list, scscf_name, INT_MAX, orig);

for (i = 0; i < pcnt; i++)
list = I_add_to_scscf_list(list, p[i], MAXINT - i, orig);
list = I_add_to_scscf_list(list, p[i], INT_MAX - i, orig);

for (i = 0; i < SCSCF_Capabilities_cnt; i++) {
r = I_get_capab_match(SCSCF_Capabilities + i, m, mcnt, o, ocnt);
Expand Down
5 changes: 0 additions & 5 deletions modules/ims_icscf/scscf_list.h
Expand Up @@ -56,11 +56,6 @@

#include "../../timer.h"

#ifndef MAXINT
#define MAXINT INT_MAX
#endif


/** S-CSCF list element */
typedef struct _scscf_entry {
str scscf_name; /**< SIP URI of the S-CSCF */
Expand Down

0 comments on commit 5ac088f

Please sign in to comment.