diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-11-15 23:07:54 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-11-15 23:07:54 +0000 |
commit | 00ae36ffd8079dc830fb4c7016a1f6ddd96d9b5c (patch) | |
tree | 420d7b835ebc1ab8ccf947de6f5c491209359f7e /source3/smbd/reply.c | |
parent | 62725d1c5cd7f96488854adf2feb5a0c28f2a120 (diff) | |
download | samba-00ae36ffd8079dc830fb4c7016a1f6ddd96d9b5c.tar.gz samba-00ae36ffd8079dc830fb4c7016a1f6ddd96d9b5c.tar.bz2 samba-00ae36ffd8079dc830fb4c7016a1f6ddd96d9b5c.zip |
change ROUNDUP to SMB_ROUNDUP to prevent conflicts with system macros
(This used to be commit d9d44d98ec719b7fc6d5b0fc35bf8727f4cd0372)
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index d3131b5fea..d466884ab6 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -4129,7 +4129,7 @@ int reply_getattrE(connection_struct *conn, char *inbuf,char *outbuf, int dum_si else { SIVAL(outbuf,smb_vwv6,(uint32)sbuf.st_size); - SIVAL(outbuf,smb_vwv8,ROUNDUP(sbuf.st_size,1024)); + SIVAL(outbuf,smb_vwv8,SMB_ROUNDUP(sbuf.st_size,1024)); } SSVAL(outbuf,smb_vwv10, mode); |