Module: sip-router
Branch: 4.0
Commit: 298913ee2e36d11c26ce5c320059e822c97d31e9
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=298913e…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Fri Dec 6 18:23:17 2013 +0100
maxforwards: use standard format instead of GNU old-style field designator
(cherry picked from commit cd04947b0ccb1c861274483f458bfc7f4329accb)
---
modules/maxfwd/maxfwd.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/maxfwd/maxfwd.c b/modules/maxfwd/maxfwd.c
index 01e64a6..371a1aa 100644
--- a/modules/maxfwd/maxfwd.c
+++ b/modules/maxfwd/maxfwd.c
@@ -55,7 +55,7 @@ struct cfg_group_maxfwd {
};
static struct cfg_group_maxfwd default_maxfwd_cfg = {
- max_limit:16
+ .max_limit=16
};
static void *maxfwd_cfg = &default_maxfwd_cfg;