]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
cache.c: Initialize blkid_debug_mask to zero since some
authorTheodore Ts'o <tytso@mit.edu>
Mon, 17 Mar 2003 23:13:57 +0000 (18:13 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 17 Mar 2003 23:13:57 +0000 (18:13 -0500)
operating systems can't deal with variables in the common
section in shared libraries.

lib/blkid/ChangeLog
lib/blkid/cache.c

index c2bf686f27abae11f693c23da703cc85340f6f0a..d24c77c98144d7dda8cd517f32e9a1355e42eb45 100644 (file)
@@ -1,5 +1,9 @@
 2003-03-17  Theodore Ts'o  <tytso@mit.edu>
 
+       * cache.c: Initialize blkid_debug_mask to zero since some
+               operating systems can't deal with variables in the common
+               section in shared libraries.
        * getsize.c (blkid_get_dev_size): Fix Apple Darwin port.
 
 2003-03-06    <tytso@mit.edu>
index 50d52a02c269b20aed1d13c14dfde16d25664ec9..bfa104e697f928b17a044f5a92e7dae03f61e449 100644 (file)
@@ -13,7 +13,7 @@
 #include <stdlib.h>
 #include "blkidP.h"
 
-int blkid_debug_mask;
+int blkid_debug_mask = 0;
 
 int blkid_get_cache(blkid_cache *ret_cache, const char *filename)
 {