#637: Corregir otra errata en r4187.

git-svn-id: https://opengnsys.es/svn/branches/version1.0@4200 a21b9725-9963-47de-94b9-378ad31fedc9
remotes/github/debian-pkg
ramon 2014-03-20 12:34:14 +00:00
parent 6bde19dc96
commit e1ddc835d4
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ FILENT=$(ogGetPath "/$1/winnt/system32/config/$2")
[ -f "$FILENT" ] && FILE="$FILENT"
FILEXP=$(ogGetPath "/$1/windows/system32/config/$2")
[ -f "$FILEXP" ] && FILE="$FILEXP"
[ -f $FILE ] || ogRaiseError OG_ERR_NOTFOUND "$1,$2" || return $?
[ -f "$FILE" ] || ogRaiseError $OG_ERR_NOTFOUND "$1 $2" || return $?
echo "$FILE"
}