diff options
author | Luke Leighton <lkcl@samba.org> | 1999-08-13 19:35:33 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-08-13 19:35:33 +0000 |
commit | dde759352fb8b097f20c680ac954708af2a86443 (patch) | |
tree | 8d1ec1259d92dc89980433f094189d7ee24d87b5 /source3/smbd | |
parent | 8592314480287edbf98daeab4a979ddec3196b55 (diff) | |
download | samba-dde759352fb8b097f20c680ac954708af2a86443.tar.gz samba-dde759352fb8b097f20c680ac954708af2a86443.tar.bz2 samba-dde759352fb8b097f20c680ac954708af2a86443.zip |
pnum should be a uint16.
(This used to be commit 41cb8b0ba071ef73bf00130ec863b592c16d359a)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/ipc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/ipc.c b/source3/smbd/ipc.c index cdbb4416af..5a0bf6ac07 100644 --- a/source3/smbd/ipc.c +++ b/source3/smbd/ipc.c @@ -3214,8 +3214,8 @@ static int api_fd_reply(connection_struct *conn,uint16 vuid,char *outbuf, { BOOL reply = False; - int pnum; - int subcommand; + uint16 pnum; + uint16 subcommand; pipes_struct *p = NULL; prs_struct pd; |