diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-03-07 20:26:37 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-03-07 20:26:37 +0000 |
commit | e1289ade25cd126c982a0edb29fbcdab88d793ad (patch) | |
tree | 2dd14c921a2dbe8035a33a116ca5b75a0a8f0bff | |
parent | 774a5814c531655142eb08c76c9f1c01c32d0d9b (diff) |
(diskfs_S_io_reauthenticate): Use assert_perror instead of assert
where appropriate.
-rw-r--r-- | libdiskfs/io-reauthenticate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdiskfs/io-reauthenticate.c b/libdiskfs/io-reauthenticate.c index d7ec8dd2..8a6cb1ac 100644 --- a/libdiskfs/io-reauthenticate.c +++ b/libdiskfs/io-reauthenticate.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1994 Free Software Foundation + Copyright (C) 1994, 1995 Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -51,7 +51,7 @@ diskfs_S_io_reauthenticate (struct protid *cred, &aux_uids, &auxuidlen, &gen_gids, &gengidlen, &aux_gids, &auxgidlen); - assert (!err); /* XXX */ + assert_perror (err); /* XXX */ diskfs_finish_protid (newcred, gen_uids, genuidlen, gen_gids, gengidlen); mutex_unlock (&cred->po->np->lock); |