diff options
author | Kozlov Dmitry <xeb@mail.ru> | 2012-08-11 14:40:27 +0400 |
---|---|---|
committer | Kozlov Dmitry <xeb@mail.ru> | 2012-08-11 14:40:27 +0400 |
commit | e326838cd260599c6ab048e7b3e538d936e54218 (patch) | |
tree | 85a55dac735bf51dbc7ee7ea8d1403e5d664a92e /accel-pppd/radius/radius.c | |
parent | 892f7b726b5b7fadc9d565b2e3d22566be346d60 (diff) | |
download | accel-ppp-e326838cd260599c6ab048e7b3e538d936e54218.tar.gz accel-ppp-e326838cd260599c6ab048e7b3e538d936e54218.zip |
ipoe: fixed packet output path
Diffstat (limited to 'accel-pppd/radius/radius.c')
-rw-r--r-- | accel-pppd/radius/radius.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pppd/radius/radius.c b/accel-pppd/radius/radius.c index f10b1567..b83f67d6 100644 --- a/accel-pppd/radius/radius.c +++ b/accel-pppd/radius/radius.c @@ -242,7 +242,7 @@ static void idle_timeout(struct triton_timer_t *t) rad_read_stats(rpd, &stats); if (stats.rx_packets == rpd->acct_rx_packets && stats.tx_packets == rpd->acct_tx_packets) { - log_ppp_msg("radius: session timed out\n"); + log_ppp_msg("radius: idle timed out\n"); ap_session_terminate(rpd->ses, TERM_IDLE_TIMEOUT, 0); } else { rpd->acct_rx_packets = stats.rx_packets; |