Files
libguestfs/customize/crypt-c.c
Richard W.M. Jones 3f315f54e8 Enable warnings in C code linked to virt-sparsify and virt-v2v.
The C code didn't have -Werror enabled (when configured) and didn't
enable the full set of warnings we would want.

However OCaml-C bindings commonly declare functions which are
called directly from OCaml, eg:

  external parse_memory : string -> doc = "v2v_xml_parse_memory"

  value v2v_xml_parse_memory (value xmlv)

These do not require prototypes as no other C code will call them, so
we have to switch off the GCC -Werror=missing-prototypes flag for
these files.

Also fixes some confusion between _CPPFLAGS and _CFLAGS.
2014-08-26 16:02:27 +01:00

47 lines
1.4 KiB
C

/* virt-sysprep - interface to crypt(3)
* Copyright (C) 2013 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <caml/alloc.h>
#include <caml/memory.h>
#include <caml/mlvalues.h>
#pragma GCC diagnostic ignored "-Wmissing-prototypes"
value
virt_sysprep_crypt (value keyv, value saltv)
{
CAMLparam2 (keyv, saltv);
CAMLlocal1 (rv);
char *r;
/* Note that crypt returns a pointer to a statically allocated
* buffer in glibc. For this and other reasons, this function
* is not thread safe.
*/
r = crypt (String_val (keyv), String_val (saltv));
rv = caml_copy_string (r);
CAMLreturn (rv);
}