Skip to content

Commit

Permalink
Fix: Small bug-fix for feed import owner setting.
Browse files Browse the repository at this point in the history
Merge pull request #2160 from greenbone/GEA-516_Feed_import_owner_setting_not_applied_correctly
  • Loading branch information
jhelmold authored Mar 25, 2024
2 parents 04a2765 + 1297df2 commit 0098581
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/manage_sql.c
Original file line number Diff line number Diff line change
Expand Up @@ -52883,7 +52883,7 @@ setting_verify (const gchar *uuid, const gchar *value, const gchar *user)
return 1;
}

if (strcmp (uuid, SETTING_UUID_SECINFO_SQL_BUFFER_THRESHOLD))
if (strcmp (uuid, SETTING_UUID_SECINFO_SQL_BUFFER_THRESHOLD) == 0)
{
int threshold;
threshold = atoi (value);
Expand Down

0 comments on commit 0098581

Please sign in to comment.