- (djm) [openbsd-compat/regress/snprintftest.c]
[openbsd-compat/regress/strduptest.c] Add missing includes so they pass compilation with "-Wall -Werror"
This commit is contained in:
parent
475d61e104
commit
d04db59ad9
|
@ -90,6 +90,9 @@
|
||||||
remove last traces of bufaux.h - it was merged into buffer.h in the big
|
remove last traces of bufaux.h - it was merged into buffer.h in the big
|
||||||
includes.h commit
|
includes.h commit
|
||||||
- (djm) [auth.c loginrec.c] Missing netinet/in.h for loginrec
|
- (djm) [auth.c loginrec.c] Missing netinet/in.h for loginrec
|
||||||
|
- (djm) [openbsd-compat/regress/snprintftest.c]
|
||||||
|
[openbsd-compat/regress/strduptest.c] Add missing includes so they pass
|
||||||
|
compilation with "-Wall -Werror"
|
||||||
|
|
||||||
20060804
|
20060804
|
||||||
- (dtucker) [configure.ac] The "crippled AES" test does not work on recent
|
- (dtucker) [configure.ac] The "crippled AES" test does not work on recent
|
||||||
|
@ -5160,4 +5163,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4456 2006/08/05 02:54:24 djm Exp $
|
$Id: ChangeLog,v 1.4457 2006/08/05 03:27:29 djm Exp $
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
static int failed = 0;
|
static int failed = 0;
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,9 @@
|
||||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
static int fail = 0;
|
static int fail = 0;
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue