diff --git a/src/testdir/test_clientserver.vim b/src/testdir/test_clientserver.vim
index eb9fcb800e5ea1ebcfb3332f4c3f53383ade013e..dbd832eba33191fb1206505669a13fe4ba91fd15 100644
--- a/src/testdir/test_clientserver.vim
+++ b/src/testdir/test_clientserver.vim
@@ -166,8 +166,10 @@ func Test_client_server()
 
   call assert_fails('call remote_startserver([])', 'E730:')
   call assert_fails("let x = remote_peek([])", 'E730:')
-  call assert_fails("let x = remote_read('vim10')", ['E573:.*vim10'])
-  call assert_fails("call server2client('abc', 'xyz')", ['E573:.*abc'])
+  call assert_fails("let x = remote_read('vim10')",
+        \ [has('unix') ? 'E573:.*vim10' : 'E277:.*vim10'])
+  call assert_fails("call server2client('abc', 'xyz')",
+        \ [has('unix') ? 'E573:.*abc' : 'E258:.*abc'])
 endfunc
 
 " Uncomment this line to get a debugging log
diff --git a/src/version.c b/src/version.c
index 68c6db4d5cb50502b3f897f132a5165f4271761c..b7555b7236ec0e911e1bbfcb664d5bf3475b9ecd 100644
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1195,
 /**/
     1194,
 /**/