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

Diff for /src/usr.bin/rsync/extern.h between version 1.16 and 1.17

version 1.16, 2019/02/16 17:59:33 version 1.17, 2019/02/16 23:16:54
Line 199 
Line 199 
 struct  download;  struct  download;
 struct  upload;  struct  upload;
   
 #ifndef MIN  #define MINIMUM(a, b) (((a) < (b)) ? (a) : (b))
 # define MIN(_x1, _x2) ((_x1) < (_x2) ? (_x1) : (_x2))  
 #endif  
   
 #define LOG0(_sess, _fmt, ...) \  #define LOG0(_sess, _fmt, ...) \
         rsync_log((_sess), __FILE__, __LINE__, -1, (_fmt), ##__VA_ARGS__)          rsync_log((_sess), __FILE__, __LINE__, -1, (_fmt), ##__VA_ARGS__)

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17