summaryrefslogtreecommitdiffstats
path: root/admin/Sources/Services/ogAdmRepoAux
diff options
context:
space:
mode:
authoririna <irinagomez@us.es>2013-12-13 13:18:19 +0000
committeririna <irinagomez@us.es>2013-12-13 13:18:19 +0000
commitd473bb925da6a79bc19b0fa545a5dbf8f878ab9e (patch)
treec29b5c6ab1f2263118d54bd05fb4c76fdb173ce3 /admin/Sources/Services/ogAdmRepoAux
parentd0d4a3d8e9aa8d49caadf43281f73fdf26a06b13 (diff)
ogAdmRepoAux: cambio return por exit para salidas con error
git-svn-id: https://opengnsys.es/svn/branches/version1.0@4107 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/Sources/Services/ogAdmRepoAux')
-rwxr-xr-xadmin/Sources/Services/ogAdmRepoAux6
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/Sources/Services/ogAdmRepoAux b/admin/Sources/Services/ogAdmRepoAux
index b7efe1dc..1fc3e770 100755
--- a/admin/Sources/Services/ogAdmRepoAux
+++ b/admin/Sources/Services/ogAdmRepoAux
@@ -73,11 +73,11 @@ case "$PARM1" in
sendFileMcast $FILE $MCASTOPT &>> $MCASTLOG
case $? in
1) echolog "Parametros insuficientes"
- return 1 ;;
+ exit 1 ;;
2) echolog "Fichero no accesible"
- return 2 ;;
+ exit 2 ;;
3) echolog "Sesion multicast no valida"
- return 3 ;;
+ exit 3 ;;
esac
;;
CREATE_IMAGE)