[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[hurd] 04/25: Fix message about not being able to request shutdown notif
From: |
Samuel Thibault |
Subject: |
[hurd] 04/25: Fix message about not being able to request shutdown notification |
Date: |
Mon, 24 Oct 2016 00:16:44 +0000 |
This is an automated email from the git hooks/post-receive script.
sthibault pushed a commit to branch upstream
in repository hurd.
commit ef3354e22ea74f7cdb3405041e02374f7de8e880
Author: Samuel Thibault <address@hidden>
Date: Tue Aug 30 22:42:22 2016 +0200
Fix message about not being able to request shutdown notification
It is just a warning, not a fatal error.
* libdiskfs/init-startup.c (_diskfs_init_completed): Prefix warning about
requesting shutdown nofication with "warning:".
* random/random.c (main): Likewise.
---
libdiskfs/init-startup.c | 2 +-
random/random.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libdiskfs/init-startup.c b/libdiskfs/init-startup.c
index 14da003..c1407ed 100644
--- a/libdiskfs/init-startup.c
+++ b/libdiskfs/init-startup.c
@@ -223,5 +223,5 @@ _diskfs_init_completed ()
return;
errout:
- error (0, err, "Cannot request shutdown notification");
+ error (0, err, "Warning: cannot request shutdown notification");
}
diff --git a/random/random.c b/random/random.c
index 8f76c5b..828e83a 100644
--- a/random/random.c
+++ b/random/random.c
@@ -639,7 +639,7 @@ main (int argc, char **argv)
err = arrange_shutdown_notification ();
if (err)
- error (0, err, "Cannot request shutdown notification");
+ error (0, err, "Warning: cannot request shutdown notification");
/* Launch. */
ports_manage_port_operations_multithread (fsys->pi.bucket, random_demuxer,
--
Alioth's /usr/local/bin/git-commit-notice on
/srv/git.debian.org/git/pkg-hurd/hurd.git
- [hurd] branch upstream updated (12576ff -> 341f43d), Samuel Thibault, 2016/10/23
- [hurd] 01/25: remap: Refuse non-absolute paths, Samuel Thibault, 2016/10/23
- [hurd] 04/25: Fix message about not being able to request shutdown notification,
Samuel Thibault <=
- [hurd] 02/25: typo, Samuel Thibault, 2016/10/23
- [hurd] 07/25: Fix looping over runsystem possibilities, Samuel Thibault, 2016/10/23
- [hurd] 03/25: Fix exec crash when setexecdata has never been called, Samuel Thibault, 2016/10/23
- [hurd] 05/25: exec: Fix loading binaries without a memory manager object, Samuel Thibault, 2016/10/23
- [hurd] 10/25: Fix patch to runsystem.hurd, Samuel Thibault, 2016/10/23
- [hurd] 20/25: console-client: Remove unused variable., Samuel Thibault, 2016/10/23
- [hurd] 19/25: ext2fs: Poison pointers into dereferenced cache pages., Samuel Thibault, 2016/10/23
- [hurd] 08/25: libfshelp: acquire references to control ports, Samuel Thibault, 2016/10/23
- [hurd] 15/25: Avoid fatal error handling in option parsers., Samuel Thibault, 2016/10/23
- [hurd] 25/25: boot: Ignore EINTR., Samuel Thibault, 2016/10/23