mirror of
https://github.com/samba-team/samba.git
synced 2025-02-26 21:57:41 +03:00
s3: Fix some && vs & warnings
Signed-off-by: Andreas Schneider <asn@samba.org> Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Sun Mar 4 13:31:25 CET 2012 on sn-devel-104
This commit is contained in:
parent
48e9d7efce
commit
b6f4a5d0ee
@ -743,7 +743,7 @@ error_status_t _epm_Lookup(struct pipes_struct *p,
|
||||
if (r->in.interface_id->vers_major ==
|
||||
(eps->e[i].syntax_id.if_version >> 16) &&
|
||||
r->in.interface_id->vers_minor <=
|
||||
(eps->e[i].syntax_id.if_version && 0xFFFF)) {
|
||||
(eps->e[i].syntax_id.if_version & 0xFFFF)) {
|
||||
match = true;
|
||||
}
|
||||
break;
|
||||
@ -756,7 +756,7 @@ error_status_t _epm_Lookup(struct pipes_struct *p,
|
||||
if (r->in.interface_id->vers_major ==
|
||||
(eps->e[i].syntax_id.if_version >> 16) &&
|
||||
r->in.interface_id->vers_minor ==
|
||||
(eps->e[i].syntax_id.if_version && 0xFFFF)) {
|
||||
(eps->e[i].syntax_id.if_version & 0xFFFF)) {
|
||||
match = true;
|
||||
}
|
||||
match = true;
|
||||
@ -789,7 +789,7 @@ error_status_t _epm_Lookup(struct pipes_struct *p,
|
||||
if (r->in.interface_id->vers_major ==
|
||||
(eps->e[i].syntax_id.if_version >> 16) &&
|
||||
r->in.interface_id->vers_minor >=
|
||||
(eps->e[i].syntax_id.if_version && 0xFFFF)) {
|
||||
(eps->e[i].syntax_id.if_version & 0xFFFF)) {
|
||||
match = true;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user