search for: http_auth_challenges_test

Displaying 4 results from an estimated 4 matches for "http_auth_challenges_test".

2016 Oct 10
4
Pacaging/build issues with AIX and vac (dovecot-2.2.25)
...sl-iostream -I../../src/lib-master -I/opt/include -I/opt/buildaix/include -I/opt/include -O2 -qmaxmem=-1 -qarch=pwr5 -I/opt/buildaix/includes -c -o test-http-auth.o test-http-auth.c "test-http-auth.c", line 27.27: 1506-022 (S) "scheme" is not a member of "const struct http_auth_challenges_test". "test-http-auth.c", line 27.37: 1506-196 (W) Initialization between types "struct http_auth_challenge_test* const" and "char*" is not allowed. "test-http-auth.c", line 28.33: 1506-022 (S) "data" is not a member of "const struct http_au...
2016 Oct 10
4
Pacaging/build issues with AIX and vac (dovecot-2.2.25)
On 09-Oct-16 22:51, Aki Tuomi wrote: >> >> Michael > > Does the compiler support C99 standard? > > Aki Yes. Plus extended features. Key difference with GCC, e.g., are the flags to the compiler, but autotools general manages those well. Key difference with platform (well, of of) is that it is not GNU, and how shared libraries are built. Again, libtool in particular,
2016 Oct 09
6
Pacaging/build issues with AIX and vac (dovecot-2.2.25)
...a const member and is not initialized. It will "ostream-encrypt.c", line 454.18: 1506-359 (I) Automatic variable buf contains a const member and is not initialized. It will "test-http-auth.c", line 27.27: 1506-022 (S) "scheme" is not a member of "const struct http_auth_challenges_test". "test-http-auth.c", line 27.37: 1506-196 (W) Initialization between types "struct http_auth_challenge_test* const" and "char*" "test-http-auth.c", line 28.33: 1506-022 (S) "data" is not a member of "const struct http_auth_challenges_te...
2016 Oct 11
2
Compound Literal - xlc and gcc differences can be patched
...part -------------- --- test-http-auth.c.orig 2016-06-29 20:01:30 +0000 +++ test-http-auth.c.new 2016-10-11 15:54:50 +0000 @@ -9,7 +9,7 @@ struct http_auth_challenge_test { const char *scheme; const char *data; - struct http_auth_param *params; + struct http_auth_param params[]; }; struct http_auth_challenges_test { @@ -17,65 +17,69 @@ struct http_auth_challenge_test *challenges; }; - +/* The schemes */ +static const struct http_auth_challenge_test basic[] = { + { .scheme = "Basic", + .data = NULL, + .params = { + (struct http_auth_param) { "realm", "WallyWorld" }, +...