diff options
author | xebd <xeb@mail.ru> | 2021-10-05 16:15:43 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-05 16:15:43 +0300 |
commit | 1b8711cf75a7c278d99840112bc7a396398e0205 (patch) | |
tree | 5b9c455ef77bcac1e1455d918970bacaae2902f3 /accel-pppd | |
parent | ff91c7376f2a6200be7ea90d36411e1acb4cd9c8 (diff) | |
parent | 6898f8b89fdb8dd1360a57433d77309d5ea67bfb (diff) | |
download | accel-ppp-1b8711cf75a7c278d99840112bc7a396398e0205.tar.gz accel-ppp-1b8711cf75a7c278d99840112bc7a396398e0205.zip |
Merge pull request #23 from soup000/master
Fixed typos in cli help.
Diffstat (limited to 'accel-pppd')
-rw-r--r-- | accel-pppd/cli/show_sessions.c | 2 | ||||
-rw-r--r-- | accel-pppd/cli/std_cmd.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/accel-pppd/cli/show_sessions.c b/accel-pppd/cli/show_sessions.c index 10e16b1..6ef6059 100644 --- a/accel-pppd/cli/show_sessions.c +++ b/accel-pppd/cli/show_sessions.c @@ -651,7 +651,7 @@ static void init(void) cli_show_ses_register("calling-sid", "calling station id", print_calling_sid); cli_show_ses_register("called-sid", "called station id", print_called_sid); cli_show_ses_register("sid", "session id", print_sid); - cli_show_ses_register("comp", "compression/ecnryption method", print_comp); + cli_show_ses_register("comp", "compression/encryption method", print_comp); cli_show_ses_register("rx-bytes", "received bytes (human readable)", print_rx_bytes); cli_show_ses_register("tx-bytes", "transmitted bytes (human readable)", print_tx_bytes); cli_show_ses_register("rx-bytes-raw", "received bytes", print_rx_bytes_raw); diff --git a/accel-pppd/cli/std_cmd.c b/accel-pppd/cli/std_cmd.c index e4eddb2..fc07352 100644 --- a/accel-pppd/cli/std_cmd.c +++ b/accel-pppd/cli/std_cmd.c @@ -386,7 +386,7 @@ static void restart_help(char * const *fields, int fields_cnt, void *client) #else cli_send(client, "restart [hard] - restart daemon\r\n"); #endif - cli_send(client, "\t\thard - restart immediatly\r\n"); + cli_send(client, "\t\thard - restart immediately\r\n"); cli_send(client, "\t\tdefault action - terminate all connections then restart\r\n"); } |