From 7b564e518d0821a61a26505708a260ad01b974fc Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Sat, 28 May 2016 23:51:13 +0200 Subject: [PATCH] obtain ioctl from sys/ioctl.h as per manpage fixed build failure on fedora --- borg/platform_linux.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borg/platform_linux.pyx b/borg/platform_linux.pyx index a1c549338..2d958e281 100644 --- a/borg/platform_linux.pyx +++ b/borg/platform_linux.pyx @@ -47,7 +47,7 @@ cdef extern from "linux/fs.h": int FS_APPEND_FL int FS_COMPR_FL -cdef extern from "stropts.h": +cdef extern from "sys/ioctl.h": int ioctl(int fildes, int request, ...) cdef extern from "string.h":