]> err.no Git - dpkg/commitdiff
Style; lose some braces for single-statement if-sentences.
authorTollef Fog Heen <tfheen@err.no>
Sun, 20 Jan 2008 09:09:08 +0000 (10:09 +0100)
committerTollef Fog Heen <tfheen@err.no>
Sun, 20 Jan 2008 09:09:08 +0000 (10:09 +0100)
lib/myopt.c

index ac8cf27f77f85ea3545ac126eb27dd7dc07b8e55..72abb3db994e1121af48844197983a6004a49e18 100644 (file)
@@ -223,13 +223,11 @@ void loadfilter(char *fn) {
     }
   }
 
-  if (ferror(file)) {
+  if (ferror(file))
     ohshite(_("read error in configuration file `%.255s'"), fn);
-  }
 
-  if (fclose(file)) {
+  if (fclose(file))
     ohshite(_("error closing configuration file `%.255s'"), fn);
-  }
 }
 
 void loadfilters(void) {
@@ -237,11 +235,10 @@ void loadfilters(void) {
   char *dirname = CONFIGDIR "/filters.d";
   DIR *dir = opendir(dirname);
   if (!dir) {
-    if (errno == ENOENT) {
+    if (errno == ENOENT)
       return NULL;
-    } else {
+    else 
       ohshite(_("Error opening filters.d"));
-    }
   }
 
   while ((dent = readdir(dir)) != NULL) {