aboutsummaryrefslogtreecommitdiff
path: root/interface.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-06 20:54:43 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-06 20:54:43 +0000
commit0f430e34af3471b5267cd6b00a803559ab7fb110 (patch)
tree3522a5761367651f520d8dfe2b089b7d7bd3479b /interface.c
parent36278b957630afbe603c632fe21792ed497df149 (diff)
downloadbusybox-0f430e34af3471b5267cd6b00a803559ab7fb110.tar.gz
Fix up some silly macros and use xmalloc and friends exclusively.
Diffstat (limited to 'interface.c')
-rw-r--r--interface.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/interface.c b/interface.c
index 05019e5eb..4df1a721a 100644
--- a/interface.c
+++ b/interface.c
@@ -3,7 +3,7 @@
* that either displays or sets the characteristics of
* one or more of the system's networking interfaces.
*
- * Version: $Id: interface.c,v 1.1 2001/03/06 00:48:59 andersen Exp $
+ * Version: $Id: interface.c,v 1.2 2001/03/06 20:54:43 andersen Exp $
*
* Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
* and others. Copyright 1993 MicroWalt Corporation
@@ -73,9 +73,6 @@
#define _(x) x
#define _PATH_PROCNET_DEV "/proc/net/dev"
#define new(p) ((p) = xcalloc(1,sizeof(*(p))))
-#define xmalloc malloc
-#define xcalloc calloc
-#define xrealloc realloc
#define KRELEASE(maj,min,patch) ((maj) * 10000 + (min)*1000 + (patch))
int procnetdev_vsn = 1;
@@ -391,11 +388,11 @@ static int INET_rresolve(char *name, size_t len, struct sockaddr_in *sin,
}
if ((ent == NULL) && (np == NULL))
safe_strncpy(name, inet_ntoa(sin->sin_addr), len);
- pn = (struct addr *) malloc(sizeof(struct addr));
+ pn = (struct addr *) xmalloc(sizeof(struct addr));
pn->addr = *sin;
pn->next = INET_nn;
pn->host = host;
- pn->name = (char *) malloc(strlen(name) + 1);
+ pn->name = (char *) xmalloc(strlen(name) + 1);
strcpy(pn->name, name);
INET_nn = pn;