[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.7 and 1.8

version 1.7, 2019/02/17 15:59:09 version 1.8, 2019/02/18 21:34:54
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.7  
changed lines
  Added in v.1.8