(mu_auth_sql_by_uid): Fixed typo.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -257,7 +257,7 @@ mu_auth_sql_by_uid (void *return_data, void *key, | ... | @@ -257,7 +257,7 @@ mu_auth_sql_by_uid (void *return_data, void *key, |
257 | } | 257 | } |
258 | 258 | ||
259 | snprintf (uidstr, sizeof (uidstr), "%u", *(uid_t*)key); | 259 | snprintf (uidstr, sizeof (uidstr), "%u", *(uid_t*)key); |
260 | query_str = sql_expand_query (sql_getpwnam_query, uidstr); | 260 | query_str = sql_expand_query (sql_getpwuid_query, uidstr); |
261 | 261 | ||
262 | if (!query_str) | 262 | if (!query_str) |
263 | { | 263 | { | ... | ... |
-
Please register or sign in to post a comment