From 4c2423a98542de4ab80ff75cb5987aa59f788ee1 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 15 Oct 1996 14:48:34 +0000 Subject: Simplify the autoconfig process a lot. svn path=/trunk/; revision=337 --- uid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'uid.c') diff --git a/uid.c b/uid.c index 186d4b35..676850c1 100644 --- a/uid.c +++ b/uid.c @@ -117,7 +117,7 @@ char *str; new = (struct idlist *)xmalloc(sizeof(struct idlist)); new->num = num; - new->id = strdup(str); + new->id = xstrdup(str); new->next = *idl; *idl = new; } -- cgit v1.2.3