1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-16 00:23:52 +03:00

Fixed missing bracket on debug statement.

This commit is contained in:
Tim Potter
-
parent 66a5c05ec4
commit 9328bc7b8a

View File

@@ -171,7 +171,7 @@ Corrections by richard.kettlewell@kewill.com
char *gr; char *gr;
if((grouplst = (gid_t *)malloc(sizeof(gid_t) * max_gr)) == NULL) { if((grouplst = (gid_t *)malloc(sizeof(gid_t) * max_gr)) == NULL) {
DEBUG(0,("initgroups: malloc fail !\n"); DEBUG(0,("initgroups: malloc fail !\n"));
return -1; return -1;
} }