aboutsummaryrefslogtreecommitdiff
path: root/example/ipsec_crypto/odp_ipsec_fwd_db.c
diff options
context:
space:
mode:
Diffstat (limited to 'example/ipsec_crypto/odp_ipsec_fwd_db.c')
-rw-r--r--example/ipsec_crypto/odp_ipsec_fwd_db.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/example/ipsec_crypto/odp_ipsec_fwd_db.c b/example/ipsec_crypto/odp_ipsec_fwd_db.c
index 292d9c7c6..482813d41 100644
--- a/example/ipsec_crypto/odp_ipsec_fwd_db.c
+++ b/example/ipsec_crypto/odp_ipsec_fwd_db.c
@@ -78,8 +78,7 @@ int create_fwd_db_entry(char *input, char **if_names, int if_count)
&entry->subnet.mask);
break;
case 1:
- strncpy(entry->oif, token, OIF_LEN - 1);
- entry->oif[OIF_LEN - 1] = 0;
+ odph_strcpy(entry->oif, token, OIF_LEN);
for (i = 0; i < if_count; i++) {
if (!strcmp(if_names[i], entry->oif)) {
match = 1;