nat: No need to match \r\n when parsing the C: N
diff --git a/openbsc/src/nat/bsc_mgcp_utils.c b/openbsc/src/nat/bsc_mgcp_utils.c
index 2b28305..74ef67b 100644
--- a/openbsc/src/nat/bsc_mgcp_utils.c
+++ b/openbsc/src/nat/bsc_mgcp_utils.c
@@ -249,7 +249,7 @@
 	if (!res)
 		return CI_UNUSED;
 
-	if (sscanf(res, "I: %d\r\n", &ci) != 1)
+	if (sscanf(res, "I: %d", &ci) != 1)
 		return CI_UNUSED;
 	return ci;
 }