=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rsync/client.c,v retrieving revision 1.7 retrieving revision 1.8 diff -c -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 **** ! /* $Id: client.c,v 1.7 2019/02/17 15:59:09 deraadt Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: client.c,v 1.8 2019/02/18 21:34:54 benno Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons * *************** *** 59,68 **** } 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*/ goto out; } --- 59,68 ---- } if (sess.rver < sess.lver) { ! ERRX(&sess, "remote protocol is older " ! "than our own (%" PRId32 " < %" PRId32 "): " ! "this is not supported", ! sess.rver, sess.lver); goto out; }