diff options
author | Günther Deschner <gd@samba.org> | 2008-06-25 00:29:06 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-06-25 09:55:11 +0200 |
commit | 3ff06e993bb2647a041a95b4dd9dce6bd29e6cec (patch) | |
tree | 8caed600e55261f5e4b53ccd690287699ee2d74c | |
parent | 92bd665aea68ee8d198f72c95af5da487efcfc36 (diff) | |
download | samba-3ff06e993bb2647a041a95b4dd9dce6bd29e6cec.tar.gz samba-3ff06e993bb2647a041a95b4dd9dce6bd29e6cec.tar.bz2 samba-3ff06e993bb2647a041a95b4dd9dce6bd29e6cec.zip |
netapi: add NetUserChangePassword() to IDL.
Guenther
(This used to be commit 7020a5bd6e90c178085bb8d04325ac5ba83b4c3d)
-rw-r--r-- | source3/librpc/idl/libnetapi.idl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index 07b640d841..c260b3018f 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -199,6 +199,17 @@ interface libnetapi ); /*******************************************/ + /* NetUserChangePassword */ + /*******************************************/ + + [nopush,nopull] NET_API_STATUS NetUserChangePassword( + [in] string domain_name, + [in] string user_name, + [in] string old_password, + [in] string new_password + ); + + /*******************************************/ /* NetQueryDisplayInformation */ /*******************************************/ |