diff --git a/INSTALL.md b/INSTALL.md index 14e56c0cd..993dd4d4c 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -16,7 +16,7 @@ Build from Git make check make install sudo ip tuntap add name pgwtun mode tun - sudo ./scripts/netconfig.sh + sudo ./scripts/linux_netconfig.sh ./cellwired diff --git a/src/pgw/pgw_sm.c b/src/pgw/pgw_sm.c index e85b2f832..543103cab 100644 --- a/src/pgw/pgw_sm.c +++ b/src/pgw/pgw_sm.c @@ -38,7 +38,7 @@ void pgw_state_operational(fsm_t *s, event_t *e) rv = pgw_path_open(); if (rv != CORE_OK) { - d_error("Can't establish S11 path"); + d_error("Can't establish PGW path"); break; } break; @@ -48,7 +48,7 @@ void pgw_state_operational(fsm_t *s, event_t *e) rv = pgw_path_close(); if (rv != CORE_OK) { - d_error("Can't close S11 path"); + d_error("Can't close PGW path"); break; } break; diff --git a/src/sgw/sgw_sm.c b/src/sgw/sgw_sm.c index 565c6649a..49175c245 100644 --- a/src/sgw/sgw_sm.c +++ b/src/sgw/sgw_sm.c @@ -37,7 +37,7 @@ void sgw_state_operational(fsm_t *s, event_t *e) rv = sgw_path_open(); if (rv != CORE_OK) { - d_error("Can't establish S11 path"); + d_error("Can't establish SGW path"); break; } break; @@ -47,7 +47,7 @@ void sgw_state_operational(fsm_t *s, event_t *e) rv = sgw_path_close(); if (rv != CORE_OK) { - d_error("Can't close S11 path"); + d_error("Can't close SGW path"); break; } break;