Commit a711f7e6 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

username_tab_completion() - Removed redundant conditional (Rocco)

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@504 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 1 addition and 3 deletions
+1 -3
......@@ -13,6 +13,7 @@ General
username_tab_completion()
- Optimization and removal of useless vars (Rocco).
- Rewritten using getpwent (suggested by Rocco).
- Removed redundant conditional (Rocco).
real_dir_from_tilde()
- Rewritten using getpwent (suggested by Adam, much optimized by Rocco).
- global.c:
......
......@@ -687,9 +687,6 @@ char **username_tab_completion(char *buf, int *num_matches)
while ((userdata = getpwent()) != NULL) {
if (userdata == NULL)
break;
if (check_wildcard_match(userdata->pw_name, &buf[1]) == TRUE) {
/* Cool, found a match. Add it to the list
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment