=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rsync/client.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- src/usr.bin/rsync/client.c 2019/02/18 21:34:54 1.8 +++ src/usr.bin/rsync/client.c 2019/02/18 21:55:27 1.9 @@ -1,4 +1,4 @@ -/* $Id: client.c,v 1.8 2019/02/18 21:34:54 benno Exp $ */ +/* $Id: client.c,v 1.9 2019/02/18 21:55:27 benno Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons * @@ -59,10 +59,10 @@ } if (sess.rver < sess.lver) { - ERRX(&sess, "remote protocol is older " - "than our own (%" PRId32 " < %" PRId32 "): " - "this is not supported", - sess.rver, sess.lver); + ERRX(&sess, + "remote protocol %d is older than own %d: unsupported\n", + sess.rver, sess.lver); + rc = 2; /* Protocol incompatibility*/ goto out; }