[SCM] Samba Shared Repository - branch v3-2-test updated - initial-v3-2-unstable-707-g299ea5d

Jeremy Allison jra at samba.org
Tue Dec 18 01:14:08 GMT 2007


The branch, v3-2-test has been updated
       via  299ea5d122e173adf6edb6399fc90798747b0c97 (commit)
      from  8223624fea7c1b61e9231168cb4d82771576cbc5 (commit)

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


- Log -----------------------------------------------------------------
commit 299ea5d122e173adf6edb6399fc90798747b0c97
Author: Jeremy Allison <jra at samba.org>
Date:   Mon Dec 17 17:13:31 2007 -0800

    Correctly define prototypes for accessor functions.
    Jeremy.

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

Summary of changes:
 source/auth/pass_check.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/auth/pass_check.c b/source/auth/pass_check.c
index fe1f98c..813540d 100644
--- a/source/auth/pass_check.c
+++ b/source/auth/pass_check.c
@@ -28,7 +28,7 @@
 /* these are kept here to keep the string_combinations function simple */
 static char *ths_user;
 
-static const char *get_this_user()
+static const char *get_this_user(void)
 {
 	if (!ths_user) {
 		return "";
@@ -49,7 +49,7 @@ static const char *set_this_user(const char *newuser)
 #if !defined(WITH_PAM)
 static char *ths_salt;
 /* This must be writable. */
-static char *get_this_salt()
+static char *get_this_salt(void)
 {
 	return ths_salt;
 }
@@ -66,7 +66,7 @@ static const char *set_this_salt(const char *newsalt)
 }
 
 static char *ths_crypted;
-static const char *get_this_crypted()
+static const char *get_this_crypted(void)
 {
 	if (!ths_crypted) {
 		return "";


-- 
Samba Shared Repository


More information about the samba-cvs mailing list