1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-27 22:50:26 +03:00

libwbclient: Remove a pointless check

This commit is contained in:
Volker Lendecke 2011-03-08 18:24:08 +01:00 committed by Volker Lendecke
parent 494d497b99
commit c22151ea3a

View File

@ -152,8 +152,9 @@ wbcErr wbcStringToSid(const char *str,
}
sid->sub_auths[sid->num_auths++] = x;
if ((*q!='-') || (*q=='\0'))
if (*q != '-') {
break;
}
p = q + 1;
}