Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
9b3ffb97
...
9b3ffb9725a770e2e97bc9cd10e0bff6b17d959c
authored
2003-03-26 18:53:25 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_auth_data_alloc): Fixed COPY macro.
1 parent
62d77375
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
mailbox/mu_auth.c
mailbox/mu_auth.c
View file @
9b3ffb9
...
...
@@ -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
);
...
...
Please
register
or
sign in
to post a comment