diff options
author | ramon <ramongomez@us.es> | 2011-05-18 13:24:45 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2011-05-18 13:24:45 +0000 |
commit | 76851004f799b704e507073e6fae65ac7d250fe5 (patch) | |
tree | 700cebdf90724d9c47af82ae6068c058a59234e2 /client/engine/Image.lib | |
parent | 599597b798d172499d8ecded3598469664e89e18 (diff) |
version 1.0.1: adaptar funciones ogIs... a valores de la API 1.0: 0=true, 1=false (cerrar #396).
git-svn-id: https://opengnsys.es/svn/branches/version1.0@1983 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'client/engine/Image.lib')
-rwxr-xr-x | client/engine/Image.lib | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/client/engine/Image.lib b/client/engine/Image.lib index 55033be3..a4b82b02 100755 --- a/client/engine/Image.lib +++ b/client/engine/Image.lib @@ -387,12 +387,15 @@ dd if="$DISK" of="$IMGFILE" bs=446 count=1 || ogRaiseError $OG_ERR_IMAGE "$1 $IM #@brief Comprueba si una imagen está bloqueada para uso exclusivo. #@param str_repo repositorio de imágenes (opcional) #@param path_image camino de la imagen (sin extensión) -#@return Código de salida: 0 - sin bloquear, 1 - bloqueada. +#@return Código de salida: 0 - bloqueado, 1 - sin bloquear o error. #@note repo = { REPO, CACHE } #@exception OG_ERR_FORMAT formato incorrecto. #@version 1.0 - Adaptación a OpenGnSys 1.0 #@author Ramon Gomez, ETSII Universidad de Sevilla #@date 2011/03/10 +#@version 1.0.1 - Devolver falso en caso de error. +#@author Ramon Gomez, ETSII Universidad de Sevilla +#@date 2011-05-18 #*/ ## function ogIsImageLocked () { @@ -404,7 +407,7 @@ if [ "$*" == "help" ]; then return fi # Error si no se reciben 1 o 2 parámetros. -[ $# -lt 1 -o $# -gt 2 ] && ogRaiseError $OG_ERR_FORMAT && return $? +[ $# -lt 1 -o $# -gt 2 ] && return 1 # Comprobar si existe el fichero de bloqueo. test -n "$(ogGetPath $@.lock)" |