From 1af95effe96284c30c0f3f1782677e8f1873ceca Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 8 Apr 1998 19:12:22 +0000 Subject: Fix to stop Windows 95 spinning on print queue requests when it gets an error message it doesn't understand. Jeremy. (This used to be commit 838e2fe2f76b20f34309c2322e3bd60817fef1fd) --- source3/smbd/ipc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/smbd/ipc.c b/source3/smbd/ipc.c index f38a76d74a..6d0a8d55dd 100644 --- a/source3/smbd/ipc.c +++ b/source3/smbd/ipc.c @@ -456,7 +456,7 @@ va_dcl p->usedlen += needed; } else { - if (p->errcode == NERR_Success) p->errcode = NERR_BufTooSmall; + if (p->errcode == NERR_Success) p->errcode = ERROR_MORE_DATA; } return 1; } -- cgit