diff options
author | Tim Potter <tpot@samba.org> | 2000-04-04 00:35:34 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2000-04-04 00:35:34 +0000 |
commit | ba0a53b52ca934389268b65ec0d9e7336ae85d4f (patch) | |
tree | 672e9ea9e01b5c3821edd03dd8d2eb91f6640c3d /source3/include | |
parent | d6981c2d3a7d2e24f2536e057a86871717787b1c (diff) | |
download | samba-ba0a53b52ca934389268b65ec0d9e7336ae85d4f.tar.gz samba-ba0a53b52ca934389268b65ec0d9e7336ae85d4f.tar.bz2 samba-ba0a53b52ca934389268b65ec0d9e7336ae85d4f.zip |
Removed unused parameter vuid from rpc_server api_* calls. For the very few
functions that need to access the vuid, it can be obtained from the
current_user global.
Did some whitespace cleanup.
(This used to be commit 738b307bd7053ede369431da7b1349befaa523d9)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/ntdomain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/ntdomain.h b/source3/include/ntdomain.h index b754dd8525..5440ca1bae 100644 --- a/source3/include/ntdomain.h +++ b/source3/include/ntdomain.h @@ -204,7 +204,7 @@ struct api_struct { char *name; uint8 opnum; - BOOL (*fn) (uint16 vuid, prs_struct*, prs_struct*); + BOOL (*fn) (prs_struct*, prs_struct*); }; typedef struct |