From: Alex Jia Date: Wed, 29 Feb 2012 06:20:32 +0000 (+0800) Subject: storage: fix a typo X-Git-Tag: v0.9.11-rc1~195 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3e99e9920f64c89bf989eb6cf941d24b7091106;p=thirdparty%2Flibvirt.git storage: fix a typo * src/storage/storage_driver.c (storageVolumeWipeInternal): s/shneier/schneier. http://code.google.com/p/diskscrub/ Signed-off-by: Alex Jia --- diff --git a/src/storage/storage_driver.c b/src/storage/storage_driver.c index df0e29138a..540e5d7116 100644 --- a/src/storage/storage_driver.c +++ b/src/storage/storage_driver.c @@ -1931,7 +1931,7 @@ storageVolumeWipeInternal(virStorageVolDefPtr def, alg_char = "gutmann"; break; case VIR_STORAGE_VOL_WIPE_ALG_SCHNEIER: - alg_char = "shneier"; + alg_char = "schneier"; break; case VIR_STORAGE_VOL_WIPE_ALG_PFITZNER7: alg_char = "pfitzner7";