diff options
Diffstat (limited to 'networking/udhcp/script.c')
-rw-r--r-- | networking/udhcp/script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/script.c b/networking/udhcp/script.c index b6b0e0d59..2a4732104 100644 --- a/networking/udhcp/script.c +++ b/networking/udhcp/script.c | |||
@@ -159,7 +159,7 @@ static char **fill_envp(struct dhcpMessage *packet) | |||
159 | if (!(over & SNAME_FIELD) && packet->sname[0]) num_options++; | 159 | if (!(over & SNAME_FIELD) && packet->sname[0]) num_options++; |
160 | } | 160 | } |
161 | 161 | ||
162 | envp = xcalloc(sizeof(char *), num_options + 5); | 162 | envp = xzalloc(sizeof(char *) * (num_options + 5)); |
163 | j = 0; | 163 | j = 0; |
164 | asprintf(&envp[j++], "interface=%s", client_config.interface); | 164 | asprintf(&envp[j++], "interface=%s", client_config.interface); |
165 | asprintf(&envp[j++], "%s=%s", "PATH", | 165 | asprintf(&envp[j++], "%s=%s", "PATH", |