Skip to content
Snippets Groups Projects
Commit c0abcd62 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix return value of finduserstr()

was always returning 0 (oops), so user.tab searches for specific string values
(usually user's real name) did not work.
parent 3f5e110a
No related branches found
No related tags found
No related merge requests found
......@@ -1472,7 +1472,7 @@ uint finduserstr(scfg_t* cfg, uint usernumber, enum user_field fnum
close(file);
if(progress != NULL)
progress(cbdata, unum, last);
return(0);
return found;
}
/****************************************************************************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment