]> arthur.barton.de Git - netatalk.git/commitdiff
Add some missing breaks to preserve correct error reporting.
authorjmarcus <jmarcus>
Sat, 29 Dec 2001 08:16:21 +0000 (08:16 +0000)
committerjmarcus <jmarcus>
Sat, 29 Dec 2001 08:16:21 +0000 (08:16 +0000)
etc/afpd/file.c

index de4ee8a15c35b4edfb8f62035f083b1cca9d9633..f7ab51f89a542096bc235a6f517bd3b30a23bd04 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: file.c,v 1.30 2001-12-03 05:03:38 jmarcus Exp $
+ * $Id: file.c,v 1.31 2001-12-29 08:16:21 jmarcus Exp $
  *
  * Copyright (c) 1990,1993 Regents of The University of Michigan.
  * All Rights Reserved.  See COPYRIGHT.
@@ -1680,6 +1680,7 @@ int               ibuflen, *rbuflen;
         case EPERM:
         case EACCES:
             err = AFPERR_ACCESS;
+                       break;
         default:
             err = AFPERR_PARAM;
         }
@@ -1692,6 +1693,7 @@ int               ibuflen, *rbuflen;
         case EPERM:
         case EACCES:
             err = AFPERR_ACCESS;
+                       break;
         default:
             err = AFPERR_PARAM;
         }