]> andersk Git - openssh.git/commitdiff
- (dtucker) [openbsd-compat/basename.c] Update from OpenBSD 1.11 -> 1.14.
authordtucker <dtucker>
Thu, 10 Nov 2005 05:42:51 +0000 (05:42 +0000)
committerdtucker <dtucker>
Thu, 10 Nov 2005 05:42:51 +0000 (05:42 +0000)
   Removal of rcsid, will no longer strlcpy parts of the string.

ChangeLog
openbsd-compat/basename.c

index df7e8620713981b54c6c977953a39640945fe513..3a184b2c6872e4d16fb98c8a05d1f29b9c824d33 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -21,6 +21,8 @@
  - (dtucker) [openbsd-compat/sigact.h] Add "OPENBSD ORIGINAL" marker.
  - (dtucker) [openbsd-compat/strmode.c] Update from OpenBSD 1.5 -> 1.7.
    Removal of rcsid, "whiteout" inode type.
+ - (dtucker) [openbsd-compat/basename.c] Update from OpenBSD 1.11 -> 1.14.
+   Removal of rcsid, will no longer strlcpy parts of the string.
 
 20051105
  - (djm) OpenBSD CVS Sync
index 5171cd64c13921c9e71736965293f643c16a410d..ad040e1392055be863fc4d8063075ee361cf8ac0 100644 (file)
@@ -1,7 +1,7 @@
-/*     $OpenBSD: basename.c,v 1.11 2003/06/17 21:56:23 millert Exp $   */
+/*     $OpenBSD: basename.c,v 1.14 2005/08/08 08:05:33 espie Exp $     */
 
 /*
- * Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1997, 2004 Todd C. Miller <Todd.Miller@courtesan.com>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
 #include "includes.h"
 #ifndef HAVE_BASENAME
 
-#ifndef lint
-static char rcsid[] = "$OpenBSD: basename.c,v 1.11 2003/06/17 21:56:23 millert Exp $";
-#endif /* not lint */
-
 char *
 basename(const char *path)
 {
        static char bname[MAXPATHLEN];
-       register const char *endp, *startp;
+       size_t len;
+       const char *endp, *startp;
 
        /* Empty or NULL string gets treated as "." */
        if (path == NULL || *path == '\0') {
-               (void)strlcpy(bname, ".", sizeof bname);
-               return(bname);
+               bname[0] = '.';
+               bname[1] = '\0';
+               return (bname);
        }
 
-       /* Strip trailing slashes */
+       /* Strip any trailing slashes */
        endp = path + strlen(path) - 1;
        while (endp > path && *endp == '/')
                endp--;
 
-       /* All slashes become "/" */
+       /* All slashes becomes "/" */
        if (endp == path && *endp == '/') {
-               (void)strlcpy(bname, "/", sizeof bname);
-               return(bname);
+               bname[0] = '/';
+               bname[1] = '\0';
+               return (bname);
        }
 
        /* Find the start of the base */
@@ -53,12 +52,14 @@ basename(const char *path)
        while (startp > path && *(startp - 1) != '/')
                startp--;
 
-       if (endp - startp + 2 > sizeof(bname)) {
+       len = endp - startp + 1;
+       if (len >= sizeof(bname)) {
                errno = ENAMETOOLONG;
-               return(NULL);
+               return (NULL);
        }
-       strlcpy(bname, startp, endp - startp + 2);
-       return(bname);
+       memcpy(bname, startp, len);
+       bname[len] = '\0';
+       return (bname);
 }
 
 #endif /* !defined(HAVE_BASENAME) */
This page took 0.045274 seconds and 5 git commands to generate.