summaryrefslogtreecommitdiff
path: root/common/ini/ini_parse.c
diff options
context:
space:
mode:
authorDmitri Pal <dpal@redhat.com>2010-05-17 13:21:56 -0400
committerStephen Gallagher <sgallagh@redhat.com>2010-05-17 13:52:16 -0400
commit5c65c5a50c496b161c7532055778c9e223185c21 (patch)
tree6834a98bbb35362ba16d9edb0494f3dfdb5f1a02 /common/ini/ini_parse.c
parentebb6e30d687a4d6626c735234c85cbb5b06a26aa (diff)
downloadsssd-5c65c5a50c496b161c7532055778c9e223185c21.tar.gz
sssd-5c65c5a50c496b161c7532055778c9e223185c21.tar.bz2
sssd-5c65c5a50c496b161c7532055778c9e223185c21.zip
Adding support for explicit 32/64 types (attempt 2).
This is a reworked patch to add support for explicit 32 and 64 bit values in the config files.
Diffstat (limited to 'common/ini/ini_parse.c')
-rw-r--r--common/ini/ini_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/ini/ini_parse.c b/common/ini/ini_parse.c
index be733d61..7b3785c3 100644
--- a/common/ini/ini_parse.c
+++ b/common/ini/ini_parse.c
@@ -163,7 +163,7 @@ int read_line(FILE *file,
/* Copy key into provided buffer */
if(i >= MAX_KEY) {
- TRACE_ERROR_STRING("Section name is too long", buf);
+ TRACE_ERROR_STRING("Key name is too long", buf);
*ext_error = ERR_LONGKEY;
return RET_INVALID;
}