Commit b41cd99f b41cd99f0419eabed2e325c39488a5a817ebf780 by Sergey Poznyakoff

(mu_auth_sql_by_uid): Fixed typo.

1 parent 791c8d04
...@@ -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 {
......