aboutsummaryrefslogtreecommitdiffstats
path: root/uid.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-15 14:48:34 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-15 14:48:34 +0000
commit4c2423a98542de4ab80ff75cb5987aa59f788ee1 (patch)
treee27ebc534bd4815c5b51ecf8f35f4640336d7c17 /uid.c
parentc1e1a25354f0072bf6bb871361f0316ed4e90593 (diff)
downloadfetchmail-4c2423a98542de4ab80ff75cb5987aa59f788ee1.tar.gz
fetchmail-4c2423a98542de4ab80ff75cb5987aa59f788ee1.tar.bz2
fetchmail-4c2423a98542de4ab80ff75cb5987aa59f788ee1.zip
Simplify the autoconfig process a lot.
svn path=/trunk/; revision=337
Diffstat (limited to 'uid.c')
-rw-r--r--uid.c2
1 files changed, 1 insertions, 1 deletions
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;
}