2186f88 KCM: include missing header file

1 file Authored by lslebodn 6 years ago, Committed by jhrozek 6 years ago,
    KCM: include missing header file
    
    man 2 readv says that the header file "sys/uio.h" must be included
    for the functions readv/writev
    
    Previously, "sys/uio.h" was included in "sys/socket.h" in glibc.
    It worked just by a change. But it will be changed in glibc-2.26.
    https://sourceware.org/bugzilla/show_bug.cgi?id=21426
    
    src/responder/kcm/kcmsrv_cmd.c: In function 'kcm_iovec_op':
    src/responder/kcm/kcmsrv_cmd.c:75:15: error: implicit declaration of function
        'readv'; did you mean 'read'? [-Werror=implicit-function-declaration]
    
    src/responder/kcm/kcmsrv_cmd.c:77:15: error: implicit declaration of function
        'writev'; did you mean 'write'? [-Werror=implicit-function-declaration]
    
    Reviewed-by: Fabiano FidĂȘncio <fidencio@redhat.com>