summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd/chap.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-08 06:45:43 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-08 06:45:43 +0000
commitdb09424d436bd5ee86fb47685ff83c2d8f70c0cd (patch)
tree0e0f2876462c2c5a3b2a85d5cf0fd292bb3552a4 /cpukit/pppd/chap.c
parent2008-09-07 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-db09424d436bd5ee86fb47685ff83c2d8f70c0cd.tar.bz2
Add missing initializers.
Diffstat (limited to 'cpukit/pppd/chap.c')
-rw-r--r--cpukit/pppd/chap.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/pppd/chap.c b/cpukit/pppd/chap.c
index 884421cdb8..0f4ad27451 100644
--- a/cpukit/pppd/chap.c
+++ b/cpukit/pppd/chap.c
@@ -59,16 +59,16 @@ static const char rcsid[] = RCSID;
*/
static option_t chap_option_list[] = {
{ "chap-restart", o_int, &chap[0].timeouttime,
- "Set timeout for CHAP" },
+ "Set timeout for CHAP", 0, NULL, 0, 0 },
{ "chap-max-challenge", o_int, &chap[0].max_transmits,
- "Set max #xmits for challenge" },
+ "Set max #xmits for challenge", 0, NULL, 0, 0 },
{ "chap-interval", o_int, &chap[0].chal_interval,
- "Set interval for rechallenge" },
+ "Set interval for rechallenge", 0, NULL, 0, 0 },
#ifdef MSLANMAN
{ "ms-lanman", o_bool, &ms_lanman,
- "Use LanMan passwd when using MS-CHAP", 1 },
+ "Use LanMan passwd when using MS-CHAP", 1, NULL, 0, 0 },
#endif
- { NULL }
+ { NULL, 0, NULL, NULL, 0, NULL, 0, 0 }
};
/*