From 63034f36aee072ed466a38ceeb24ce03ec16ceb3 Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Tue, 30 Nov 2021 00:56:05 -0600 Subject: [PATCH] base: Fix doxygen comments --- lib/base/expand_path.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/base/expand_path.c b/lib/base/expand_path.c index 89fc4278e..df382b998 100644 --- a/lib/base/expand_path.c +++ b/lib/base/expand_path.c @@ -533,6 +533,8 @@ expand_token(heim_context context, * * @context A heim_context * @path_in The path to expand tokens from + * @filepath True if this is a filesystem path (converts slashes to + * backslashes on Windows) * @ppath_out The expanded path * @... Variable number of pairs of strings, the first of each * being a token (e.g., "luser") and the second a string to @@ -572,6 +574,8 @@ free_extra_tokens(char **extra_tokens) * * @context A heim_context * @path_in The path to expand tokens from + * @filepath True if this is a filesystem path (converts slashes to + * backslashes on Windows) * @ppath_out The expanded path * @ap A NULL-terminated va_list of pairs of strings, the first of each * being a token (e.g., "luser") and the second a string to replace