1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Missing assign fix from Bernt Nilsson bkn@ida.liu.se.

Jeremy.
This commit is contained in:
Jeremy Allison 0001-01-01 00:00:00 +00:00
parent 724109a33b
commit adf24a90e8

View File

@ -633,7 +633,7 @@ static void srv_spoolss_receive_message(int msg_type, pid_t src, void *buf, size
*/
hl = NULL;
for ( p = get_first_pipe(); p; get_next_pipe(p)) {
for ( p = get_first_pipe(); p; p = get_next_pipe(p)) {
if (strequal(p->name, "spoolss")) {
hl = p->pipe_handles;
break;