projects
/
openwrt
/
staging
/
wigyori.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6fdcbd0
)
swconfig: Remove unused code
author
Felix Fietkau
<nbd@openwrt.org>
Fri, 19 Feb 2010 17:33:46 +0000
(17:33 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Fri, 19 Feb 2010 17:33:46 +0000
(17:33 +0000)
Signed-off-by: Martin Mares <mj@ucw.cz>
SVN-Revision: 19758
package/swconfig/src/cli.c
patch
|
blob
|
history
diff --git
a/package/swconfig/src/cli.c
b/package/swconfig/src/cli.c
index 7e77bd2c6bc1bcdef51b644d5c6a0a34b9a1d345..76593ba14a160751f26bd3a04bd9d900014542da 100644
(file)
--- a/
package/swconfig/src/cli.c
+++ b/
package/swconfig/src/cli.c
@@
-196,8
+196,6
@@
int main(int argc, char **argv)
int err;
int i;
- struct switch_port *ports;
-
int cmd = CMD_NONE;
char *cdev = NULL;
int cport = -1;
@@
-255,8
+253,6
@@
int main(int argc, char **argv)
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) {
@@
-329,7
+325,5
@@
int main(int argc, char **argv)
out:
swlib_free_all(dev);
- free(ports);
-
return 0;
}