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 | 4389fba6c3c77a1f1ff7c3c8c85ab483acba77f9 (patch) | |
tree | 910559e09e02d206120e0b0e377645fe1604b110 | |
parent | 930230181d6b5972156bf4da8880fd2424838071 (diff) | |
download | samba-4389fba6c3c77a1f1ff7c3c8c85ab483acba77f9.tar.gz samba-4389fba6c3c77a1f1ff7c3c8c85ab483acba77f9.tar.bz2 samba-4389fba6c3c77a1f1ff7c3c8c85ab483acba77f9.zip |
use FSTYPE_STRING not "SAMBA" for filesystem type
(This used to be commit df62c80e1d04059905b8a3c5bf9073ba91331e99)
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 1415d95522..83a4293fad 100644 --- a/source3/smbd/reply.c +++ b/source3/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); |