mirror of https://gitee.com/openkylin/ppp.git
Correct unkown => unknown typo
Last-Update: 2013-09-09 Gbp-Pq: Name radius-config.c-unkown-typo
This commit is contained in:
parent
dcd19911b1
commit
f39727fffe
|
@ -271,7 +271,7 @@ char *rc_conf_str(char *optname)
|
|||
option = find_option(optname, OT_STR);
|
||||
|
||||
if (option == NULL)
|
||||
fatal("rc_conf_str: unkown config option requested: %s", optname);
|
||||
fatal("rc_conf_str: unknown config option requested: %s", optname);
|
||||
return (char *)option->val;
|
||||
}
|
||||
|
||||
|
@ -282,7 +282,7 @@ int rc_conf_int(char *optname)
|
|||
option = find_option(optname, OT_INT|OT_AUO);
|
||||
|
||||
if (option == NULL)
|
||||
fatal("rc_conf_int: unkown config option requested: %s", optname);
|
||||
fatal("rc_conf_int: unknown config option requested: %s", optname);
|
||||
return *((int *)option->val);
|
||||
}
|
||||
|
||||
|
@ -293,7 +293,7 @@ SERVER *rc_conf_srv(char *optname)
|
|||
option = find_option(optname, OT_SRV);
|
||||
|
||||
if (option == NULL)
|
||||
fatal("rc_conf_srv: unkown config option requested: %s", optname);
|
||||
fatal("rc_conf_srv: unknown config option requested: %s", optname);
|
||||
return (SERVER *)option->val;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue