strmode takes a mode_t, not an int; prompted by Collin Funk.
authorotto <otto@openbsd.org>
Sun, 23 Jun 2024 07:08:26 +0000 (07:08 +0000)
committerotto <otto@openbsd.org>
Sun, 23 Jun 2024 07:08:26 +0000 (07:08 +0000)
ok kettenis@ deraadt@ tb@

include/string.h
lib/libc/string/strmode.c

index 9141c30..f1d0cbc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: string.h,v 1.32 2017/09/05 03:16:13 schwarze Exp $    */
+/*     $OpenBSD: string.h,v 1.33 2024/06/23 07:08:26 otto Exp $        */
 /*     $NetBSD: string.h,v 1.6 1994/10/26 00:56:30 cgd Exp $   */
 
 /*-
@@ -37,7 +37,7 @@
 
 #include <sys/cdefs.h>
 #include <sys/_null.h>
-#include <machine/_types.h>
+#include <sys/_types.h>
 
 /*
  * POSIX mandates that certain string functions not present in ISO C
@@ -128,7 +128,7 @@ size_t       strlcat(char *, const char *, size_t)
                __attribute__ ((__bounded__(__string__,1,3)));
 size_t  strlcpy(char *, const char *, size_t)
                __attribute__ ((__bounded__(__string__,1,3)));
-void    strmode(int, char *);
+void    strmode(__mode_t, char *);
 char   *strsep(char **, const char *);
 int     timingsafe_bcmp(const void *, const void *, size_t);
 int     timingsafe_memcmp(const void *, const void *, size_t);
index 609b893..c57fe74 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: strmode.c,v 1.8 2015/08/31 02:53:57 guenther Exp $ */
+/*     $OpenBSD: strmode.c,v 1.9 2024/06/23 07:08:26 otto Exp $ */
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
  * All rights reserved.
 #include <sys/stat.h>
 #include <string.h>
 
-/* XXX mode should be mode_t */
-
 void
-strmode(int mode, char *p)
+strmode(mode_t mode, char *p)
 {
         /* print type */
        switch (mode & S_IFMT) {