d3ba5e16d0f782ddbd5ed42362acc4695be0fccc
[gnulib.git] / lib / rename.c
1 /* @IGNORE@ -*- c -*- */
2 /* Work around the bug in some systems whereby rename fails when the
3    source path has a trailing slash.  The rename from SunOS 4.1.1_U1
4    has this bug.
5    Copyright (C) 2001 Free Software Foundation, Inc.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2, or (at your option)
10    any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software Foundation,
19    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
20
21 /* written by Volker Borchert */
22
23 #include <config.h>
24 #include <stdio.h>
25
26 #ifndef HAVE_DECL_FREE
27 "this configure-time declaration test was not run"
28 #endif
29 #if !HAVE_DECL_FREE
30 void free ();
31 #endif
32
33 /* Rename the file SRC_PATH to the file DST_PATH, removing any trailing
34    slashes from SRC_PATH. Needed for SunOS 4.1.1_U1.  */
35
36 int
37 rpl_rename (const char *src_path, const char *dst_path)
38 {
39   char *src_temp;
40   int i;
41   int t;
42
43   i = strlen (src_path) - 1;
44   if (src_path[i] == '/')
45     {
46       src_temp = xstrdup (src_path);
47       for ( ; i > 0 && src_path[i] == '/'; i--)
48         src_temp[i] = '\0';
49     }
50   else
51     src_temp = (char *) src_path;
52
53   t = rename (src_temp, dst_path);
54
55   if (src_temp != src_path)
56     free (src_temp);
57
58   return t;
59 }