* swconfig.c: Switch configuration utility
*
* Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org>
+ * Copyright (C) 2010 Martin Mares <mj@ucw.cz>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
int err;
int i;
- struct switch_port *ports;
-
int cmd = CMD_NONE;
char *cdev = NULL;
int cport = -1;
return 1;
}
- ports = malloc(sizeof(struct switch_port) * dev->ports);
- memset(ports, 0, sizeof(struct switch_port) * dev->ports);
swlib_scan(dev);
if (cmd == CMD_GET || cmd == CMD_SET) {
out:
swlib_free_all(dev);
- free(ports);
-
return 0;
}