Do not use casts as lvalues.
This commit is contained in:
parent
482ec87e2d
commit
6e16eb36f4
@ -30,6 +30,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: file.c,v 1.2 2001/04/16 04:33:01 bp Exp $
|
||||
* $FreeBSD$
|
||||
*/
|
||||
#include <sys/param.h>
|
||||
#include <sys/sysctl.h>
|
||||
@ -71,7 +72,7 @@ smb_write(struct smb_ctx *ctx, smbfh fh, off_t offset, size_t count,
|
||||
struct smbioc_rw rwrq;
|
||||
|
||||
rwrq.ioc_fh = fh;
|
||||
(const char*)rwrq.ioc_base = src;
|
||||
rwrq.ioc_base = (char *)src;
|
||||
rwrq.ioc_cnt = count;
|
||||
rwrq.ioc_offset = offset;
|
||||
if (ioctl(ctx->ct_fd, SMBIOC_WRITE, &rwrq) == -1)
|
||||
|
@ -30,6 +30,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: rq.c,v 1.7 2001/04/16 04:33:01 bp Exp $
|
||||
* $FreeBSD$
|
||||
*/
|
||||
#include <sys/param.h>
|
||||
#include <sys/ioctl.h>
|
||||
@ -162,7 +163,7 @@ smb_t2_request(struct smb_ctx *ctx, int setup, int setupcount,
|
||||
bzero(&krq, sizeof(krq));
|
||||
krq.ioc_setup[0] = setup;
|
||||
krq.ioc_setupcnt = setupcount;
|
||||
(const char*)krq.ioc_name = name;
|
||||
krq.ioc_name = (char *)name;
|
||||
krq.ioc_tparamcnt = tparamcnt;
|
||||
krq.ioc_tparam = tparam;
|
||||
krq.ioc_tdatacnt = tdatacnt;
|
||||
|
Loading…
Reference in New Issue
Block a user