Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

smb: client: delete "true", "false" defines

Kernel has its own official true/false definitions.

The defines aren't even used in this file.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Steve French <stfrench@microsoft.com>

authored by

Alexey Dobriyan and committed by
Steve French
5d390df3 6613476e

-7
-7
fs/smb/client/smbencrypt.c
··· 26 26 #include "cifsproto.h" 27 27 #include "../common/md4.h" 28 28 29 - #ifndef false 30 - #define false 0 31 - #endif 32 - #ifndef true 33 - #define true 1 34 - #endif 35 - 36 29 /* following came from the other byteorder.h to avoid include conflicts */ 37 30 #define CVAL(buf,pos) (((unsigned char *)(buf))[pos]) 38 31 #define SSVALX(buf,pos,val) (CVAL(buf,pos)=(val)&0xFF,CVAL(buf,pos+1)=(val)>>8)