[dovecot-cvs] dovecot/src/lib mountpoint.c,1.4.2.1,1.4.2.2

cras at dovecot.org cras at dovecot.org
Sat Jul 1 23:14:39 EEST 2006


Update of /var/lib/cvs/dovecot/src/lib
In directory talvi:/tmp/cvs-serv13823

Modified Files:
      Tag: branch_1_0
	mountpoint.c 
Log Message:
mountpoint_get() returned broken mount_path and type with BSDs.



Index: mountpoint.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib/mountpoint.c,v
retrieving revision 1.4.2.1
retrieving revision 1.4.2.2
diff -u -d -r1.4.2.1 -r1.4.2.2
--- mountpoint.c	9 May 2006 21:21:23 -0000	1.4.2.1
+++ mountpoint.c	1 Jul 2006 20:14:37 -0000	1.4.2.2
@@ -50,7 +50,7 @@
 
 	point_r->device_path = p_strdup(pool, buf.f_mntfromname);
 	point_r->mount_path = p_strdup(pool, buf.f_mntonname);
-	point_r->mount_path = p_strdup(pool, buf.f_fstypename);
+	point_r->type = p_strdup(pool, buf.f_fstypename);
 	point_r->block_size = buf.f_bsize;
 	return 1;
 #else



More information about the dovecot-cvs mailing list