summaryrefslogtreecommitdiff
path: root/include/error_context.h
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2003-02-26 06:27:13 +0000
committerNathan Scott <nathans@sgi.com>2003-02-26 06:27:13 +0000
commit79989b25c65ea0b8352fcd0bfc15461af09251b3 (patch)
treed993baa3d0be95f4978ffe1ab2d765d993b743c5 /include/error_context.h
parent7b33ebd60e68795347c2c844d81d90e38fd9091e (diff)
downloadattr-79989b25c65ea0b8352fcd0bfc15461af09251b3.tar.gz
Another extended attributes userspace patch from AndreasG - several small
incremental fixes from last set, and addition of symbol versioning.
Diffstat (limited to 'include/error_context.h')
-rw-r--r--include/error_context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/error_context.h b/include/error_context.h
index c838ebc..f3c54e9 100644
--- a/include/error_context.h
+++ b/include/error_context.h
@@ -24,7 +24,7 @@ struct error_context {
# define quote(ctx, name) \
( ((ctx) && (ctx)->quote) ? (ctx)->quote((ctx), (name)) : (name) )
# define quote_free(ctx, name) do { \
- if ((ctx) && (ctx)->quote) \
+ if ((ctx) && (ctx)->quote_free) \
(ctx)->quote_free((ctx), (name)); \
} while(0)
#endif