[BACK]Return to client.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / rsync

Diff for /src/usr.bin/rsync/client.c between version 1.9 and 1.10

version 1.9, 2019/02/18 21:55:27 version 1.10, 2019/02/18 22:47:34
Line 59 
Line 59 
         }          }
   
         if (sess.rver < sess.lver) {          if (sess.rver < sess.lver) {
                 ERRX(&sess,                  ERRX(&sess, "remote protocol is older "
                     "remote protocol %d is older than own %d: unsupported\n",                          "than our own (%" PRId32 " < %" PRId32 "): "
                     sess.rver, sess.lver);                          "this is not supported",
                 rc = 2; /* Protocol incompatibility*/                          sess.rver, sess.lver);
                 goto out;                  goto out;
         }          }
   

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10