Commit 9b3ffb97 9b3ffb9725a770e2e97bc9cd10e0bff6b17d959c by Sergey Poznyakoff

(mu_auth_data_alloc): Fixed COPY macro.

1 parent 62d77375
......@@ -82,9 +82,9 @@ mu_auth_data_alloc (struct mu_auth_data **ptr,
p = (char *)(*ptr + 1);
#define COPY(f) \
(*ptr)->##f = p; \
strcpy (p, ##f); \
p += strlen (##f) + 1
(*ptr)->f = p; \
strcpy (p, f); \
p += strlen (f) + 1
COPY (name);
COPY (passwd);
......