[SCM] Samba Shared Repository - branch v3-5-test updated

Karolin Seeger kseeger at samba.org
Mon Dec 13 07:58:46 MST 2010


The branch, v3-5-test has been updated
       via  a966463 Fix bso#3185, return false when EOF is encountered in param name.
      from  50c8b42 s3: Fix bug 7843: Expand the local SAMs aliases

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-5-test


- Log -----------------------------------------------------------------
commit a9664633c667f6d02f33b951805882258604ff1c
Author: Holger Hetterich <hhetter at novell.com>
Date:   Sat Dec 4 18:18:50 2010 +0100

    Fix bso#3185, return false when EOF is encountered in param name.

-----------------------------------------------------------------------

Summary of changes:
 lib/util/params.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/util/params.c b/lib/util/params.c
index 80adc71..376fed4 100644
--- a/lib/util/params.c
+++ b/lib/util/params.c
@@ -358,7 +358,7 @@ static bool Parameter( myFILE *InFile, bool (*pfunc)(const char *, const char *,
       case EOF:
         InFile->bufr[i] = '\0';
         DEBUG(1,("%s Unexpected end-of-file at: %s\n", func, InFile->bufr ));
-        return( true );
+        return( false );
 
       default:
         if( isspace( c ) )     /* One ' ' per whitespace region.       */


-- 
Samba Shared Repository


More information about the samba-cvs mailing list