diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-03-12 02:15:32 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-03-12 02:15:32 +0000 |
commit | df62c80e1d04059905b8a3c5bf9073ba91331e99 (patch) | |
tree | ed29f91ff14ed254f2abdb66acff2438705b3d50 | |
parent | a4c6884f43233d57a5f6465f67c4657dd061ae43 (diff) | |
download | samba-df62c80e1d04059905b8a3c5bf9073ba91331e99.tar.gz samba-df62c80e1d04059905b8a3c5bf9073ba91331e99.tar.xz samba-df62c80e1d04059905b8a3c5bf9073ba91331e99.zip |
use FSTYPE_STRING not "SAMBA" for filesystem type
-rw-r--r-- | source/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/reply.c b/source/smbd/reply.c index 1415d95522f..83a4293fad4 100644 --- a/source/smbd/reply.c +++ b/source/smbd/reply.c @@ -308,7 +308,7 @@ int reply_tcon_and_X(char *inbuf,char *outbuf,int length,int bufsize) } else { - char *fsname = "SAMBA"; + char *fsname = FSTYPE_STRING; char *p; set_message(outbuf,3,3,True); |