diff options
author | Justus Winter <justus@gnupg.org> | 2017-06-19 21:20:57 +0200 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2017-08-05 18:42:22 +0200 |
commit | 835b293d35a209d38047126443d41fa7090daa4c (patch) | |
tree | 5bf956895e6030f91cd618fb191b2151f6d25423 /ext2fs/xattr.c | |
parent | dc0b5a43224999223a246870912b0f292b1980e9 (diff) | |
download | hurd-835b293d35a209d38047126443d41fa7090daa4c.tar.gz hurd-835b293d35a209d38047126443d41fa7090daa4c.tar.bz2 hurd-835b293d35a209d38047126443d41fa7090daa4c.zip |
Use our own variant of 'assert' and 'assert_perror'.
Our variants print stack traces on failures. This will make locating
errors much easier.
Diffstat (limited to 'ext2fs/xattr.c')
-rw-r--r-- | ext2fs/xattr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext2fs/xattr.c b/ext2fs/xattr.c index 45969195..bfc34028 100644 --- a/ext2fs/xattr.c +++ b/ext2fs/xattr.c @@ -445,7 +445,7 @@ ext2_free_xattr_block (struct node *np) goto cleanup; } - assert (!diskfs_readonly); + assert_backtrace (!diskfs_readonly); block = disk_cache_block_ref (blkno); header = EXT2_XATTR_HEADER (block); @@ -697,7 +697,7 @@ ext2_set_xattr (struct node *np, const char *name, const char *value, /* Allocate and initialize new block */ block_t goal; - assert (!diskfs_readonly); + assert_backtrace (!diskfs_readonly); goal = sblock->s_first_data_block + np->dn->info.i_block_group * EXT2_BLOCKS_PER_GROUP (sblock); |