]> git.tuebingen.mpg.de Git - dss.git/blobdiff - df.c
Fix --config-file for relative paths.
[dss.git] / df.c
diff --git a/df.c b/df.c
index 6074f251c764c0e04f216d45f4aa51a72fc47d5c..7fb319e0ba866746d7e223a4114b0f4f986dc17e 100644 (file)
--- a/df.c
+++ b/df.c
@@ -1,8 +1,4 @@
-/*
- * Copyright (C) 2008-2010 Andre Noll <maan@systemlinux.org>
- *
- * Licensed under the GPL v2. For licencing details see COPYING.
- */
+/* SPDX-License-Identifier: GPL-2.0 */
 #include <sys/statvfs.h>
 #include <stdio.h>
 #include <assert.h>
 #include <sys/statvfs.h>
 #include <stdio.h>
 #include <assert.h>
 
 #include "gcc-compat.h"
 #include "log.h"
 
 #include "gcc-compat.h"
 #include "log.h"
-#include "error.h"
-#include "string.h"
+#include "err.h"
+#include "str.h"
 #include "df.h"
 
 int get_disk_space(const char *path, struct disk_space *result)
 {
 #include "df.h"
 
 int get_disk_space(const char *path, struct disk_space *result)
 {
-       /* using floats allows to not care about integer overflows */
+       /* With floats we don't need to care about integer overflows. */
        float total_blocks, available_blocks, blocksize;
        float total_inodes, available_inodes;
 
        float total_blocks, available_blocks, blocksize;
        float total_inodes, available_inodes;