diff options
author | Jeremy Allison <jra@samba.org> | 2004-06-15 23:46:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:51:57 -0500 |
commit | 4dddfb74aefbe62367769af5fea36859bdce38f2 (patch) | |
tree | c4fa792c8c6629b25f919fc0fca0eb8ea54757f7 | |
parent | 2acd0848663f28afedff9b11b738e048f5ead2cc (diff) | |
download | samba-4dddfb74aefbe62367769af5fea36859bdce38f2.tar.gz samba-4dddfb74aefbe62367769af5fea36859bdce38f2.tar.bz2 samba-4dddfb74aefbe62367769af5fea36859bdce38f2.zip |
r1156: Ensure new remote arch of CIFSFS is seen.
Jeremy.
(This used to be commit 33fa4b8b27427874ac70af00908d97709c1cddc7)
-rw-r--r-- | source3/lib/util.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 9d7a2648c5..54cbc36772 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -1802,6 +1802,9 @@ void set_remote_arch(enum remote_arch_types type) case RA_SAMBA: fstrcpy(remote_arch,"Samba"); break; + case RA_CIFSFS: + fstrcpy(remote_arch,"CIFSFS"); + break; default: ra_type = RA_UNKNOWN; fstrcpy(remote_arch, "UNKNOWN"); |