8a0c5c00c8
- drop upstreamed patches - create iucvterm subpackage - update src_vipa locations patch - install cmsfs tools into /sbin - add post 1.8.1 fixes from IBM
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From 0ac6c456898d8c09908a35add45d018eb8f76613 Mon Sep 17 00:00:00 2001
|
|
From: =?utf-8?q?Dan=20Hor=C3=A1k?= <dan@danny.cz>
|
|
Date: Thu, 23 Apr 2009 11:46:01 +0200
|
|
Subject: [PATCH] s390-tools-1.8.1-fdasd-su
|
|
|
|
---
|
|
fdasd/fdasd.c | 10 ++++++----
|
|
1 files changed, 6 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/fdasd/fdasd.c b/fdasd/fdasd.c
|
|
index ef01c9b..b6802f9 100644
|
|
--- a/fdasd/fdasd.c
|
|
+++ b/fdasd/fdasd.c
|
|
@@ -2005,10 +2005,12 @@ fdasd_get_geometry (fdasd_anchor_t *anc)
|
|
if (anc->verbose) printf("disk type check : ok\n");
|
|
|
|
if (dasd_info.FBA_layout != 0) {
|
|
- snprintf(err_str, ERROR_STRING_SIZE,
|
|
- "%s is not formatted with z/OS compatible "
|
|
- "disk layout!", options.device);
|
|
- fdasd_error(anc, wrong_disk_format, err_str);
|
|
+ if(!anc->silent) {
|
|
+ snprintf(err_str, ERROR_STRING_SIZE,
|
|
+ "%s is not formatted with z/OS compatible "
|
|
+ "disk layout!", options.device);
|
|
+ fdasd_error(anc, wrong_disk_format, err_str);
|
|
+ }
|
|
}
|
|
|
|
if (anc->verbose) printf("disk layout check : ok\n");
|
|
--
|
|
1.6.0.6
|
|
|