summaryrefslogtreecommitdiffstats
path: root/sys-utils/sln.c
blob: 8c70114a40eac8a0135c718ef5666243b541a511 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* `sln' program to create links between files.
   Copyright (C) 1986, 1989, 1990, 1991, 1993 Free Software Foundation, Inc.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */

/* Written by Mike Parker and David MacKenzie. */

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>

#if !defined(S_ISDIR) && defined(S_IFDIR)
#define	S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
#endif

int
main (int argc, char **argv) {
  struct stat stats;

  if (argc != 3) return 1;

  /* Destination must not be a directory. */
#if 0
  if (stat (argv [2], &stats) == 0 && S_ISDIR (stats.st_mode))
    {
      return 1;
    }
#endif

  if (lstat (argv [2], &stats) == 0)
    {
      if (S_ISDIR (stats.st_mode))
	{
	  return 1;
	}
      else if (unlink (argv [2]) && errno != ENOENT)
	{
	  return 1;
	}
    }
  else if (errno != ENOENT)
    {
      return 1;
    }
       
#ifdef S_ISLNK
  if (symlink (argv [1], argv [2]) == 0)
#else
  if (link (argv [1], argv [2]) == 0)
#endif
    {
      return 0;
    }

  return 1;
}