diff options
author | Derrell Lipman <derrell.lipman@unwireduniverse.com> | 2008-03-01 20:56:54 -0500 |
---|---|---|
committer | Karolin Seeger <ks@sernet.de> | 2008-03-04 08:59:31 +0100 |
commit | 99eab28ce164356bb446e0732a990af5eba14cb9 (patch) | |
tree | 683aa0cd028e2c82fa80c9c6bbe9441f74bebc09 | |
parent | 4a1f55ba0d6e736e8175efb0c5e4906a5bb43ee3 (diff) | |
download | samba-99eab28ce164356bb446e0732a990af5eba14cb9.tar.gz samba-99eab28ce164356bb446e0732a990af5eba14cb9.tar.bz2 samba-99eab28ce164356bb446e0732a990af5eba14cb9.zip |
Comment was in wrong place
(cherry picked from commit dec70fa3c0424c148016cc667a3c159e16d8a944)
(This used to be commit eb4d6dda1091199af7e62fb584525deb382978e2)
-rw-r--r-- | source3/include/libsmbclient.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h index 058ac64210..95ee64d0fe 100644 --- a/source3/include/libsmbclient.h +++ b/source3/include/libsmbclient.h @@ -677,16 +677,15 @@ smbc_getOptionNoAutoAnonymousLogin(SMBCCTX *c); void smbc_setOptionNoAutoAnonymousLogin(SMBCCTX *c, smbc_bool b); -/** Get the function for obtaining authentication data */ -smbc_get_auth_data_fn smbc_getFunctionAuthData(SMBCCTX *c); - - /************************************* * Getters and setters for FUNCTIONS * *************************************/ +/** Get the function for obtaining authentication data */ +smbc_get_auth_data_fn smbc_getFunctionAuthData(SMBCCTX *c); + /** Set the function for obtaining authentication data */ void smbc_setFunctionAuthData(SMBCCTX *c, smbc_get_auth_data_fn f); |