https://bugzilla.samba.org/show_bug.cgi?id=1529
------- Additional Comments From [EMAIL PROTECTED] 2005-09-06 11:38 ------- [EMAIL PROTECTED]:~> cat rsync-intoverflowtest.c #include <limits.h> #include <stdio.h> int main(void) { unsigned i = UINT_MAX; printf("i = %u, i+1 = %u\n", i, i+1); exit(0); } [EMAIL PROTECTED]:~> ./rsync-intoverflowtest i = 4294967295, i+1 = 0 [EMAIL PROTECTED]:~> Yes, I looked at an older version (just the one we ship with our enterprise server :). I'll have a look at the rest of your comment tomorrow. :) -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html