projects
/
platform
/
upstream
/
toybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1199377
)
Change type from int to size_t
59/280659/1
accepted/tizen_7.0_unified_hotfix
tizen_7.0_hotfix
accepted/tizen/7.0/unified/20221110.062039
accepted/tizen/7.0/unified/hotfix/20221116.111507
accepted/tizen/unified/20220905.124608
submit/tizen/20220905.044029
tizen_7.0_m2_release
author
jiung-yu
<jiung.yu@samsung.com>
Thu, 1 Sep 2022 22:22:49 +0000
(07:22 +0900)
committer
jiung-yu
<jiung.yu@samsung.com>
Thu, 1 Sep 2022 22:22:49 +0000
(07:22 +0900)
Change-Id: I5b1d33f9b0dc9cc9e1ae6ef3cbae781026ff479b
toys/pending/dhcpd.c
patch
|
blob
|
history
diff --git
a/toys/pending/dhcpd.c
b/toys/pending/dhcpd.c
index
bf3f2eb
..
213a941
100644
(file)
--- a/
toys/pending/dhcpd.c
+++ b/
toys/pending/dhcpd.c
@@
-741,7
+741,8
@@
static int parse_server_config(char *config_file, struct config_keyword *confkey
{
FILE *fs = NULL;
char *confline_temp = NULL,*confline = NULL, *tk = NULL, *tokens[2] = {NULL, NULL};
- int len, linelen, tcount, count, size = ARRAY_LEN(keywords);
+ int len, tcount, count, size = ARRAY_LEN(keywords);
+ size_t linelen;
for (count = 0; count < size; count++)
if (confkey[count].handler)