diff options
author | Nalin Dahyabhai <nalin@localhost.localdomain> | 2008-05-13 18:30:14 -0400 |
---|---|---|
committer | Nalin Dahyabhai <nalin@localhost.localdomain> | 2008-05-13 18:30:14 -0400 |
commit | d01a5adac69f1fde9d64a88938a22147d0cfc25e (patch) | |
tree | cf294e92a96d9a1eb301f2a749f0ccd046e5c3d0 /src/format.h | |
parent | 6aee466569e68cf0a8b4d3acb0f9f425714a3cbb (diff) | |
download | slapi-nis-d01a5adac69f1fde9d64a88938a22147d0cfc25e.tar.gz slapi-nis-d01a5adac69f1fde9d64a88938a22147d0cfc25e.tar.xz slapi-nis-d01a5adac69f1fde9d64a88938a22147d0cfc25e.zip |
- note that the key is specified as a format specifier
- recognize "function" syntax in format specifiers
Diffstat (limited to 'src/format.h')
-rw-r--r-- | src/format.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/format.h b/src/format.h index 1269d0b..796eebb 100644 --- a/src/format.h +++ b/src/format.h @@ -1,5 +1,7 @@ #include <dirsrv/slapi-plugin.h> +struct plugin_state; void format_free_data(char *data); void format_free_ndn_list(char **ndn_list); -char *format_get_data(Slapi_PBlock *pb, Slapi_Entry *e, const char *fmt, +char *format_get_data(struct plugin_state *state, + Slapi_PBlock *pb, Slapi_Entry *e, const char *fmt, char ***visited_ndn_list); |