X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gnu%2Fstripslash.c;h=12359cf7bf5fc2a0941224ecf90215e3efcdc9bd;hb=HEAD;hp=c52a910b8694ab9e14a346ff8ee7e121e28acab2;hpb=3322ff6164a1e9dd3d1622c64a9b9b7c5f303ef6;p=debian%2Ftar diff --git a/gnu/stripslash.c b/gnu/stripslash.c index c52a910b..12359cf7 100644 --- a/gnu/stripslash.c +++ b/gnu/stripslash.c @@ -1,8 +1,6 @@ -/* -*- buffer-read-only: t -*- vi: set ro: */ -/* DO NOT EDIT! GENERATED AUTOMATICALLY! */ /* stripslash.c -- remove redundant trailing slashes from a file name - Copyright (C) 1990, 2001, 2003-2006, 2009-2010 Free Software Foundation, + Copyright (C) 1990, 2001, 2003-2006, 2009-2015 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify @@ -37,7 +35,7 @@ strip_trailing_slashes (char *file) bool had_slash; /* last_component returns "" for file system roots, but we need to turn - `///' into `/'. */ + "///" into "/". */ if (! *base) base = file; base_lim = base + base_len (base);