aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/usernetctl.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/usernetctl.c b/src/usernetctl.c
index 33bdaf1c..f642f332 100644
--- a/src/usernetctl.c
+++ b/src/usernetctl.c
@@ -134,7 +134,7 @@ int main(int argc, char ** argv) {
/* automatically prepend "ifcfg-" if it is not specified */
if (!strncmp(ifaceConfig, "ifcfg-", 6)) {
char *temp;
- temp = (char *) malloc(strlen(ifaceConfig) + 6);
+ temp = (char *) alloca(strlen(ifaceConfig) + 7);
strcpy(temp, "ifcfg-");
/* strcat is safe because we got the length from strlen */
strcat(temp, ifaceConfig);
@@ -143,7 +143,8 @@ int main(int argc, char ** argv) {
switch (userCtl(ifaceConfig)) {
- char * dash;
+ char *dash;
+
case NOT_FOUND:
/* a `-' will be found at least in "ifcfg-" */
dash = strrchr(ifaceConfig, '-');