Hi Mark, I had a couple compiler errors reported when using the Intel compiler. Here are the error messages (or see https:// bugzilla.redhat.com/bugzilla/show_bug.cgi?id=149459 )

The compiler said

1.
eval.c(653): warning #267: the format string requires additional arguments
The source code is
      Debug4("Checking AND Atom %s?\n");
%s specifier, not trailing parameter.

2.
cfexecd.c(931): warning #269: invalid format string conversion
The source code is
sscanf(to,"[EMAIL PROTECTED]",domain);
. not valid in %s specifier. Maybe
sscanf(to,"[EMAIL PROTECTED]",domain);
was what the programmer intended ?


These were reported against 2.1.9, so the line numbers have changed, although the code in question seems to still be the same. Now the errors above can be found at the following lines in the current SVN trunk:

1. eval.c line 694
2. cfexecd.c line 990

Thanks,
Jeff


_______________________________________________
Bug-cfengine mailing list
Bug-cfengine@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-cfengine

Reply via email to