diff options
author | Derrell Lipman <derrell.lipman@unwireduniverse.com> | 2008-03-01 20:56:54 -0500 |
---|---|---|
committer | Derrell Lipman <derrell.lipman@unwireduniverse.com> | 2008-03-01 20:56:54 -0500 |
commit | b3c16a241d27b4220fd25dcf4d30974a787f6ce7 (patch) | |
tree | 1405d1c8a9725d9d18fcb0e3291fda0de49accd0 | |
parent | 0bd3df33eddf305f5d812ab1788232c925576c5e (diff) | |
download | samba-b3c16a241d27b4220fd25dcf4d30974a787f6ce7.tar.gz samba-b3c16a241d27b4220fd25dcf4d30974a787f6ce7.tar.bz2 samba-b3c16a241d27b4220fd25dcf4d30974a787f6ce7.zip |
Comment was in wrong place
(This used to be commit dec70fa3c0424c148016cc667a3c159e16d8a944)
-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); |