From b697393a924f969fff7e0ea69bdd2144cdab3c03 Mon Sep 17 00:00:00 2001
From: Dmitri Pal <dpal@redhat.com>
Date: Fri, 4 Oct 2013 20:57:47 -0400
Subject: [PATCH] [INI] Adding missing argument to docs

Patch fixes two doxygen comments.
One to make the meaning of a flag more clear.
Another to expose the argument that was missing
from the doc.
---
 ini/ini_configobj.h |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/ini/ini_configobj.h b/ini/ini_configobj.h
index ac85ba7..1c04d8a 100644
--- a/ini/ini_configobj.h
+++ b/ini/ini_configobj.h
@@ -331,7 +331,7 @@ enum ERR_PARSE {
  * @{
  */
 
-/** @brief Do not wrap */
+/** @brief Suppress multi line value wrapping */
 #define INI_PARSE_NOWRAP    0x0001
 /** @brief No spaces are allowed to the left of the key */
 #define INI_PARSE_NOSPACE   0x0002
@@ -691,6 +691,9 @@ int ini_config_changed(struct ini_cfgfile *file_ctx1,
  *                              in case of parsing error.
  * @param[in]  collision_flags  Flags that control handling
  *                              of the duplicate sections or keys.
+ * @param[in]  parse_flags      Flags that control parsing process,
+ *                              for example how to handle spaces at
+ *                              the beginning of the line.
  * @param[out] ini_config       Configuration object.
  *
  * @return 0 - Success.
-- 
1.7.1

