DO NOT REPLY [Bug 5287] FreeBSD pre10 compilation warnings report

samba-bugs at samba.org samba-bugs at samba.org
Thu Feb 28 22:29:04 GMT 2008


https://bugzilla.samba.org/show_bug.cgi?id=5287


wayned at samba.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WONTFIX




------- Comment #1 from wayned at samba.org  2008-02-28 16:29 CST -------
The "might be used uninitialized" warnings are because your gcc is not
understanding that exit_cleanup() does not return.  If your gcc is <= 2, then
the NORETURN modifier won't be defined, and you'd see those warnings.  If you
want to verify this, it might help to tweak the following define in rsync.h to
add an exit(42) call at the end (separated by a comma, not a semicolon):

#define exit_cleanup(code) _exit_cleanup(code, __FILE__, __LINE__), exit(42)

The unused parameter warnings are because you don't have ACL and xattr support
enabled.  I'm not inclined to try to silence those at the moment.  (I might do
so eventually.)

The "comparison between signed and unsigned" warnings have already been fixed
in the dev version (in the git repository and nighty tar files).

Thanks for testing!


-- 
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.


More information about the rsync mailing list