Skip to content

Commit

Permalink
Spelling error correction
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergkemper authored and Marco van Wieringen committed May 9, 2015
1 parent 6ba049f commit 19d075e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/bareos-config-lib.sh.in
Expand Up @@ -541,9 +541,9 @@ get_translated_sql_file()
${input_file}
}

get_database_grant_priviliges()
get_database_grant_privileges()
{
# Returns the DDL for granting priviliges for a database user.
# Returns the DDL for granting privileges for a database user.
# Can be used, to get the SQL commands
# to create additional database users.
# If requested, this user can be limited to read-only database access.
Expand Down
2 changes: 1 addition & 1 deletion src/cats/grant_bareos_privileges.in
Expand Up @@ -74,7 +74,7 @@ fi

echo "Granting ${db_type} tables"

if ! get_database_grant_priviliges "${db_type}" "${db_user}" "${db_password}" > ${temp_sql_grants}; then
if ! get_database_grant_privileges "${db_type}" "${db_user}" "${db_password}" > ${temp_sql_grants}; then
echo "Error creating privileges."
exit 1
fi
Expand Down

0 comments on commit 19d075e

Please sign in to comment.