[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.8 and 1.9

version 1.8, 2019/02/18 21:34:54 version 1.9, 2019/02/18 21:55:27
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.8  
changed lines
  Added in v.1.9