[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.6 and 1.7

version 1.6, 2019/02/16 10:44:01 version 1.7, 2019/02/17 15:59:09
Line 59 
Line 59 
         }          }
   
         if (sess.rver < sess.lver) {          if (sess.rver < sess.lver) {
                 ERRX(&sess, "remote protocol is older "                  ERRX(&sess,
                         "than our own (%" PRId32 " < %" PRId32 "): "                      "remote protocol %d is older than own %d: unsupported\n",
                         "this is not supported",                      sess.rver, sess.lver);
                         sess.rver, sess.lver);                  rc = 2; /* Protocol incompatibility*/
                 goto out;                  goto out;
         }          }
   

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7