~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to drizzled/internal/my_symlink.cc

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2000 MySQL AB
 
2
 
 
3
   This program is free software; you can redistribute it and/or modify
 
4
   it under the terms of the GNU General Public License as published by
 
5
   the Free Software Foundation; version 2 of the License.
 
6
 
 
7
   This program is distributed in the hope that it will be useful,
 
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
   GNU General Public License for more details.
 
11
 
 
12
   You should have received a copy of the GNU General Public License
 
13
   along with this program; if not, write to the Free Software
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
15
 
 
16
#include "config.h"
 
17
 
 
18
#include "drizzled/internal/my_sys.h"
 
19
#include "drizzled/error.h"
 
20
#include "drizzled/internal/m_string.h"
 
21
#include <errno.h>
 
22
 
 
23
namespace drizzled
 
24
{
 
25
namespace internal
 
26
{
 
27
 
 
28
bool test_if_hard_path(const char *dir_name)
 
29
{
 
30
  if (dir_name[0] == FN_HOMELIB && dir_name[1] == FN_LIBCHAR)
 
31
    return (home_dir != NULL && test_if_hard_path(home_dir));
 
32
  if (dir_name[0] == FN_LIBCHAR)
 
33
    return (true);
 
34
  return false;
 
35
} /* test_if_hard_path */
 
36
 
 
37
} /* namespace internal */
 
38
} /* namespace drizzled */