aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/common.c')
-rw-r--r--networking/udhcp/common.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/udhcp/common.c b/networking/udhcp/common.c
index 20d843bab..4bc719001 100644
--- a/networking/udhcp/common.c
+++ b/networking/udhcp/common.c
@@ -526,7 +526,7 @@ int FAST_FUNC udhcp_str2optset(const char *const_str, void *arg,
526 526
527 /* Cheat, the only *const* str possible is "" */ 527 /* Cheat, the only *const* str possible is "" */
528 str = (char *) const_str; 528 str = (char *) const_str;
529 opt = strtok(str, " \t=:"); 529 opt = strtok_r(str, " \t=:", &str);
530 if (!opt) 530 if (!opt)
531 return 0; 531 return 0;
532 532
@@ -550,10 +550,10 @@ int FAST_FUNC udhcp_str2optset(const char *const_str, void *arg,
550 char *val; 550 char *val;
551 551
552 if (optflag->flags == OPTION_BIN) { 552 if (optflag->flags == OPTION_BIN) {
553 val = strtok(NULL, ""); /* do not split "'q w e'" */ 553 val = strtok_r(NULL, "", &str); /* do not split "'q w e'" */
554 if (val) trim(val); 554 if (val) trim(val);
555 } else 555 } else
556 val = strtok(NULL, ", \t"); 556 val = strtok_r(NULL, ", \t", &str);
557 if (!val) 557 if (!val)
558 break; 558 break;
559 559
@@ -567,7 +567,7 @@ int FAST_FUNC udhcp_str2optset(const char *const_str, void *arg,
567 break; 567 break;
568 case OPTION_IP_PAIR: 568 case OPTION_IP_PAIR:
569 retval = udhcp_str2nip(val, buffer); 569 retval = udhcp_str2nip(val, buffer);
570 val = strtok(NULL, ", \t/-"); 570 val = strtok_r(NULL, ", \t/-", &str);
571 if (!val) 571 if (!val)
572 retval = 0; 572 retval = 0;
573 if (retval) 573 if (retval)
@@ -631,7 +631,7 @@ int FAST_FUNC udhcp_str2optset(const char *const_str, void *arg,
631 *slash = '\0'; 631 *slash = '\0';
632 retval = udhcp_str2nip(val, buffer + 1); 632 retval = udhcp_str2nip(val, buffer + 1);
633 buffer[0] = mask = bb_strtou(slash + 1, NULL, 10); 633 buffer[0] = mask = bb_strtou(slash + 1, NULL, 10);
634 val = strtok(NULL, ", \t/-"); 634 val = strtok_r(NULL, ", \t/-", &str);
635 if (!val || mask > 32 || errno) 635 if (!val || mask > 32 || errno)
636 retval = 0; 636 retval = 0;
637 if (retval) { 637 if (retval) {