diff options
author | 2012-07-19 18:07:03 +0000 | |
---|---|---|
committer | 2012-07-19 18:07:03 +0000 | |
commit | 24fb94dedcac7b29be8c2c11ea979afc28be1b05 (patch) | |
tree | 15ceef8b14f0a9d8733eb42ae6ca544e3894705c /sys/kern/subr_hibernate.c | |
parent | Fix for VU#624931 CVE-2012-2978: NSD denial of service (diff) | |
download | wireguard-openbsd-24fb94dedcac7b29be8c2c11ea979afc28be1b05.tar.xz wireguard-openbsd-24fb94dedcac7b29be8c2c11ea979afc28be1b05.zip |
say that we are unhibernating..
Diffstat (limited to 'sys/kern/subr_hibernate.c')
-rw-r--r-- | sys/kern/subr_hibernate.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/kern/subr_hibernate.c b/sys/kern/subr_hibernate.c index f6bb3068210..0bb12943452 100644 --- a/sys/kern/subr_hibernate.c +++ b/sys/kern/subr_hibernate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_hibernate.c,v 1.45 2012/07/16 12:31:15 stsp Exp $ */ +/* $OpenBSD: subr_hibernate.c,v 1.46 2012/07/19 18:07:03 deraadt Exp $ */ /* * Copyright (c) 2011 Ariane van der Steldt <ariane@stack.nl> @@ -1099,6 +1099,8 @@ hibernate_resume(void) return; } + printf("Unhibernating...\n"); + /* Read the image from disk into the image (pig) area */ if (hibernate_read_image(&disk_hiber_info)) goto fail; |