diff options
author | Ronnie Sahlberg <[email protected]> | 2018-08-10 11:31:10 +1000 |
---|---|---|
committer | Steve French <[email protected]> | 2018-08-10 11:53:51 -0500 |
commit | e55954a5f7ce0e321cea9f91f4ebeb2a4e0165f4 (patch) | |
tree | 6b41e35c4137377ae01b2f6322a969d5117086a8 | |
parent | c1777df1a5d541cda918ff0450c8adcc8b69c2fd (diff) |
cifs: don't show domain= in mount output when domain is empty
Reported-by: Xiaoli Feng <[email protected]>
Signed-off-by: Ronnie Sahlberg <[email protected]>
Signed-off-by: Steve French <[email protected]>
Reviewed-by: Pavel Shilovsky <[email protected]>
-rw-r--r-- | fs/cifs/cifsfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index de16078e456b..7065426b3280 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -432,7 +432,7 @@ cifs_show_options(struct seq_file *s, struct dentry *root) else if (tcon->ses->user_name) seq_show_option(s, "username", tcon->ses->user_name); - if (tcon->ses->domainName) + if (tcon->ses->domainName && tcon->ses->domainName[0] != 0) seq_show_option(s, "domain", tcon->ses->domainName); if (srcaddr->sa_family != AF_UNSPEC) { |