On Mon, 2011-08-15 at 18:39 -0600, David Woodhouse wrote:
> On Wed, 2011-08-10 at 18:22 +0200, Svante Signell wrote:
> > Source: openconnect
> > Version: 3.02-1
> > Severity: important
> > Tags: patch
> > User: debian-h...@lists.debian.org
> > Usertags: hurd
> > 
> > Hi,
> > 
> > currently openconnect does not compile on hurd-i386. The problem is a
> > missing inclusion of sys/statfs.h in ssl.c. The inlined patch fixes
> > this issue.
> 
> Thanks.
> 
> Can I have that patch again with a Signed-off-by: please?

Signed-off-by: svante.sign...@telia.com

Or do you need a DM to do the signing. I'm not a DM myself, but can find
one if needed.


--- openconnect-3.02/ssl.c~	2011-04-19 15:49:41.000000000 +0200
+++ openconnect-3.02/ssl.c	2011-08-10 17:43:18.000000000 +0200
@@ -40,6 +40,8 @@
 #include <sys/mount.h>
 #elif defined (__sun__) || defined(__NetBSD__) || defined(__DragonFly__)
 #include <sys/statvfs.h>
+#elif defined (__GNU__)
+#include <sys/statfs.h>
 #endif
 
 #include <openssl/ssl.h>

Reply via email to