Skip to content

Commit

Permalink
: amanda-configure-c99.patch
Browse files Browse the repository at this point in the history
Avoid an implicit int.  Otherwise, the test fails unconditionally with
compilers that do not support implicit ints (a language feature that
was removed with the C99 language revision).

Submitted upstream: <zmanda#220>
  • Loading branch information
fweimer-rh committed Nov 28, 2023
1 parent 16b902e commit f66a2f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/amanda/ipv6.m4
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ AC_DEFUN([AMANDA_CHECK_IPV6],
#include <sys/socket.h>
#include <errno.h>
main()
int main(void)
{
int aa;
aa = socket(AF_INET6, SOCK_STREAM, 0);
Expand Down

0 comments on commit f66a2f8

Please sign in to comment.