From da19c47d2997ed240c591f27b38d588ba71bc3c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn?= Date: Fri, 15 Feb 2013 17:32:18 +0100 Subject: [PATCH] Typo --- src/image/ImageManagerActions.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/image/ImageManagerActions.cc b/src/image/ImageManagerActions.cc index 9a1a17a245..94954b6bf5 100644 --- a/src/image/ImageManagerActions.cc +++ b/src/image/ImageManagerActions.cc @@ -36,7 +36,7 @@ Image * ImageManager::acquire_image(int vm_id, int image_id, string& error) if ( img == 0 ) { ostringstream oss; - oss << "Image with ID: " << image_id << " does not exists"; + oss << "Image with ID: " << image_id << " does not exist"; error = oss.str(); return 0; @@ -65,7 +65,7 @@ Image * ImageManager::acquire_image(int vm_id, const string& name, int uid, stri if ( img == 0 ) { ostringstream oss; - oss << "Image " << name << " does not exists for user " << uid; + oss << "Image " << name << " does not exist for user " << uid; error = oss.str(); return 0;