diff options
-rw-r--r-- | plugins/check_pgsql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index d56ce9b..8cfc1ab 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c | |||
@@ -329,9 +329,9 @@ is_pg_dbname (char *dbname) | |||
329 | return (FALSE); | 329 | return (FALSE); |
330 | strncpy (txt, dbname, NAMEDATALEN - 1); | 330 | strncpy (txt, dbname, NAMEDATALEN - 1); |
331 | txt[NAMEDATALEN - 1] = 0; | 331 | txt[NAMEDATALEN - 1] = 0; |
332 | if (sscanf (txt, "%[_a-zA-Z]%[^_a-zA-Z0-9]", tmp, tmp) == 1) | 332 | if (sscanf (txt, "%[_a-zA-Z]%[^_a-zA-Z0-9-]", tmp, tmp) == 1) |
333 | return (TRUE); | 333 | return (TRUE); |
334 | if (sscanf (txt, "%[_a-zA-Z]%[_a-zA-Z0-9]%[^_a-zA-Z0-9]", tmp, tmp, tmp) == | 334 | if (sscanf (txt, "%[_a-zA-Z]%[_a-zA-Z0-9-]%[^_a-zA-Z0-9-]", tmp, tmp, tmp) == |
335 | 2) return (TRUE); | 335 | 2) return (TRUE); |
336 | return (FALSE); | 336 | return (FALSE); |
337 | } | 337 | } |