Module Name: src
Committed By: dholland
Date: Mon Jan 30 06:39:26 UTC 2012
Modified Files:
src/lib/libquota: quota_nfs.c
Log Message:
Remove redundant break statement.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libquota/quota_nfs.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libquota/quota_nfs.c
diff -u src/lib/libquota/quota_nfs.c:1.1 src/lib/libquota/quota_nfs.c:1.2
--- src/lib/libquota/quota_nfs.c:1.1 Mon Jan 9 15:29:56 2012
+++ src/lib/libquota/quota_nfs.c Mon Jan 30 06:39:26 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: quota_nfs.c,v 1.1 2012/01/09 15:29:56 dholland Exp $ */
+/* $NetBSD: quota_nfs.c,v 1.2 2012/01/30 06:39:26 dholland Exp $ */
/*-
* Copyright (c) 2011 Manuel Bouyer
* All rights reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: quota_nfs.c,v 1.1 2012/01/09 15:29:56 dholland Exp $");
+__RCSID("$NetBSD: quota_nfs.c,v 1.2 2012/01/30 06:39:26 dholland Exp $");
#include <sys/types.h>
#include <sys/param.h> /* XXX for DEV_BSIZE */
@@ -199,7 +199,6 @@ __quota_nfs_get(struct quotahandle *qh,
case Q_NOQUOTA:
quotaval_clear(qv);
return 0;
- break;
case Q_EPERM:
errno = EACCES;
return -1;