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