Module: kamailio
Branch: master
Commit: f229d221de2d9cbe8535019e98b018f31313c8cd
URL: 
https://github.com/kamailio/kamailio/commit/f229d221de2d9cbe8535019e98b018f31313c8cd

Author: Henning Westerholt <[email protected]>
Committer: Henning Westerholt <[email protected]>
Date: 2019-09-19T23:47:49+02:00

core: rename local variable that hides global variable

---

Modified: src/core/error.c

---

Diff:  
https://github.com/kamailio/kamailio/commit/f229d221de2d9cbe8535019e98b018f31313c8cd.diff
Patch: 
https://github.com/kamailio/kamailio/commit/f229d221de2d9cbe8535019e98b018f31313c8cd.patch

---

diff --git a/src/core/error.c b/src/core/error.c
index b41afb01c4..a45fa9e4d2 100644
--- a/src/core/error.c
+++ b/src/core/error.c
@@ -39,7 +39,7 @@ int ser_error=-1;
 int prev_ser_error=-1;
 
 int err2reason_phrase( 
-       int ser_error,  /* current internal ser error */
+       int int_error,   /* current internal ser error */
        int *sip_error,  /* the sip error code to which ser     
                                            ser error will be turned */
        char *phrase,    /* resulting error text */
@@ -49,22 +49,22 @@ int err2reason_phrase(
 
        char *error_txt;
 
-       switch( ser_error ) {
+       switch( int_error ) {
                case E_SEND:
                        error_txt="Unfortunately error on sending to next hop 
occurred";
-                       *sip_error=-ser_error;
+                       *sip_error=-int_error;
                        break;
                case E_BAD_ADDRESS:
                        error_txt="Unresolvable destination";
-                       *sip_error=-ser_error;
+                       *sip_error=-int_error;
                        break;
                case E_BAD_REQ:
                        error_txt="Bad Request";
-                       *sip_error=-ser_error;
+                       *sip_error=-int_error;
                        break;
                case E_BAD_URI:
                        error_txt="Regretfully, we were not able to process the 
URI";
-                       *sip_error=-ser_error;
+                       *sip_error=-int_error;
                        break;
                case E_BAD_TUPEL:
                        error_txt="Transaction tuple incomplete";
@@ -105,7 +105,7 @@ int err2reason_phrase(
 
                case E_CANCELED:
                        error_txt="transaction canceled";
-                       *sip_error=-ser_error;
+                       *sip_error=-int_error;
                        break;
 
                case E_OUT_OF_MEM:
@@ -125,7 +125,7 @@ int err2reason_phrase(
                        break;
        }
        return snprintf( phrase, etl, "%s (%d/%s)", error_txt, 
-               -ser_error, signature );
+               -int_error, signature );
 }
 
 char *error_text( int code )


_______________________________________________
Kamailio (SER) - Development Mailing List
[email protected]
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev

Reply via email to