From 2440a008a82f73c8310cde18cbfb53e39c99d362 Mon Sep 17 00:00:00 2001 From: Rafal Szczesniak Date: Mon, 25 Jul 2005 22:00:56 +0000 Subject: r8759: Another couple of fields in usermod routine. rafal (This used to be commit 266aaacf0be955096d53e2a967bdaa5d0c5558ed) --- source4/libnet/composite.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source4/libnet/composite.h') diff --git a/source4/libnet/composite.h b/source4/libnet/composite.h index 70e70d04ee..6fc0886cb3 100644 --- a/source4/libnet/composite.h +++ b/source4/libnet/composite.h @@ -61,6 +61,9 @@ struct libnet_rpc_userdel { #define USERMOD_FIELD_ACCOUNT_NAME ( 0x00000001 ) #define USERMOD_FIELD_FULL_NAME ( 0x00000002 ) +#define USERMOD_FIELD_DESCRIPTION ( 0x00000010 ) +#define USERMOD_FIELD_LOGON_SCRIPT ( 0x00000100 ) +#define USERMOD_FIELD_PROFILE_PATH ( 0x00000200 ) struct libnet_rpc_usermod { struct { @@ -72,6 +75,9 @@ struct libnet_rpc_usermod { const char *account_name; const char *full_name; + const char *description; + const char *logon_script; + const char *profile_path; } change; } in; }; -- cgit