X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/fb4c98c2c8a618855ebe4d11c36f8a120fab2aa1..2fcc265c2fc409f29f2c924155f01582aedac981:/t_unsafe.c diff --git a/t_unsafe.c b/t_unsafe.c index 47c06ac9..a08dd71a 100644 --- a/t_unsafe.c +++ b/t_unsafe.c @@ -1,36 +1,33 @@ /* - * Copyright (C) 2002 by Martin Pool - * + * Test harness for unsafe_symlink(). Not linked into rsync itself. + * + * Copyright (C) 2002 Martin Pool + * Copyright (C) 2003-2007 Wayne Davison + * * 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 of the License, or - * (at your option) any later version. - * + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * * 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. + * + * 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., + * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ -/** - * @file - * - * Test harness for unsafe_symlink(). Not linked into @c rsync itself. - * - * Prints either "safe" or "unsafe" depending on the two arguments. - * Always returns 0 unless something extraordinary happens. - **/ +/* Prints either "safe" or "unsafe" depending on the two arguments. + * Always returns 0 unless something extraordinary happens. */ #include "rsync.h" int dry_run, read_only, list_only, verbose; +int preserve_perms = 0; - -int main(int argc, char **argv) +int +main(int argc, char **argv) { if (argc != 3) { fprintf(stderr, "usage: t_unsafe LINKDEST SRCDIR\n"); @@ -39,6 +36,6 @@ int main(int argc, char **argv) printf("%s\n", unsafe_symlink(argv[1], argv[2]) ? "unsafe" : "safe"); - + return 0; }