[dovecot-cvs] dovecot/src/plugins/quota quota-fs.h,1.2,1.3

cras at dovecot.org cras at dovecot.org
Fri Dec 30 23:13:34 EET 2005


Update of /var/lib/cvs/dovecot/src/plugins/quota
In directory talvi:/tmp/cvs-serv17156/src/plugins/quota

Modified Files:
	quota-fs.h 
Log Message:
stdio.h needs to be included before mntent.h or sys/mnttab.h



Index: quota-fs.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/plugins/quota/quota-fs.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- quota-fs.h	23 Dec 2005 22:38:25 -0000	1.2
+++ quota-fs.h	30 Dec 2005 21:13:32 -0000	1.3
@@ -20,8 +20,10 @@
 #  include <sys/param.h> /* BSDs */
 #  include <sys/mount.h>
 #elif defined(HAVE_MNTENT_H)
+#  include <stdio.h>
 #  include <mntent.h> /* Linux */
 #elif defined(HAVE_SYS_MNTTAB_H)
+#  include <stdio.h>
 #  include <sys/mnttab.h> /* Solaris */
 #else
 #  undef HAVE_FS_QUOTA



More information about the dovecot-cvs mailing list