diff options
| -rw-r--r-- | source3/client/client.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 690cc99f7f..69037ca1db 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -2328,7 +2328,7 @@ static char **completion_fn(const char *text, int start, int end)  		if (sp == NULL)  			return NULL; -		for (i = 0; commands[i].name; i++) +		for (i = 0; commands[i].description; i++)  			if ((strncmp(commands[i].name, text, sp - buf) == 0) && (commands[i].name[sp - buf] == 0))  				break;  		if (commands[i].name == NULL)  | 
