From 6141b6a49f18b88b01bb101bea22d2cc10235602 Mon Sep 17 00:00:00 2001 From: Justin Maggard Date: Thu, 24 Feb 2011 16:25:30 -0800 Subject: Detect Mac OS X as a separate client type. --- source3/lib/util.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3/lib') diff --git a/source3/lib/util.c b/source3/lib/util.c index e70dd6a341..99c4200eb3 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -1858,6 +1858,9 @@ void set_remote_arch(enum remote_arch_types type) case RA_CIFSFS: remote_arch_str = "CIFSFS"; break; + case RA_OSX: + remote_arch_str = "OSX"; + break; default: ra_type = RA_UNKNOWN; remote_arch_str = "UNKNOWN"; -- cgit