CVS commit: src/sys/dev/acpi

2023-03-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Mar 17 17:16:06 UTC 2023

Modified Files:
src/sys/dev/acpi: acpi_display.c

Log Message:
s/Brigthness/Brightness/ in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/dev/acpi/acpi_display.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/acpi/acpi_display.c
diff -u src/sys/dev/acpi/acpi_display.c:1.22 src/sys/dev/acpi/acpi_display.c:1.23
--- src/sys/dev/acpi/acpi_display.c:1.22	Sun Feb 27 21:21:51 2022
+++ src/sys/dev/acpi/acpi_display.c	Fri Mar 17 17:16:06 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: acpi_display.c,v 1.22 2022/02/27 21:21:51 riastradh Exp $	*/
+/*	$NetBSD: acpi_display.c,v 1.23 2023/03/17 17:16:06 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -66,7 +66,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: acpi_display.c,v 1.22 2022/02/27 21:21:51 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi_display.c,v 1.23 2023/03/17 17:16:06 andvar Exp $");
 
 #include 
 #include 
@@ -848,7 +848,7 @@ acpidisp_out_capabilities(const struct a
 
 	cap = 0;
 
-	/* List of Brigthness levels */
+	/* List of Brightness levels */
 	if (acpidisp_has_method(ad->ad_handle, "_BCL", ACPI_TYPE_PACKAGE))
 		cap |= ACPI_DISP_OUT_CAP__BCL;
 



CVS commit: src/sys/dev/acpi

2023-03-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Mar 17 17:16:06 UTC 2023

Modified Files:
src/sys/dev/acpi: acpi_display.c

Log Message:
s/Brigthness/Brightness/ in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/dev/acpi/acpi_display.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.sbin/pf/pfs

2023-03-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Mar 17 17:12:54 UTC 2023

Modified Files:
src/usr.sbin/pf/pfs: parse.y

Log Message:
s/enougth/enough/


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/usr.sbin/pf/pfs/parse.y

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.sbin/pf/pfs/parse.y
diff -u src/usr.sbin/pf/pfs/parse.y:1.3 src/usr.sbin/pf/pfs/parse.y:1.4
--- src/usr.sbin/pf/pfs/parse.y:1.3	Thu Apr 23 00:29:00 2020
+++ src/usr.sbin/pf/pfs/parse.y	Fri Mar 17 17:12:54 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.y,v 1.3 2020/04/23 00:29:00 joerg Exp $ */
+/* $NetBSD: parse.y,v 1.4 2023/03/17 17:12:54 andvar Exp $ */
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
 #include 
 
 #ifndef lint
-__RCSID("$NetBSD: parse.y,v 1.3 2020/04/23 00:29:00 joerg Exp $");
+__RCSID("$NetBSD: parse.y,v 1.4 2023/03/17 17:12:54 andvar Exp $");
 #endif
 
 #include 
@@ -490,7 +490,7 @@ add_state(void)
 		allocated = 5;
 		states->ps_buf = malloc(allocated * sizeof(struct pfsync_state));
 		if (states->ps_buf == NULL)
-			yyfatal("Not enougth memory");
+			yyfatal("Not enough memory");
 	}
 
 	if (allocated == (states->ps_len / sizeof(struct pfsync_state))) {
@@ -499,7 +499,7 @@ add_state(void)
 		buf = realloc(states->ps_buf, allocated * sizeof(struct pfsync_state));
 		if (buf == NULL) {
 			free(states->ps_buf);
-			yyfatal("Not enougth memory");
+			yyfatal("Not enough memory");
 		}
 		states->ps_buf = buf;
 	}



CVS commit: src/usr.sbin/pf/pfs

2023-03-17 Thread Andrius Varanavicius
Module Name:src
Committed By:   andvar
Date:   Fri Mar 17 17:12:54 UTC 2023

Modified Files:
src/usr.sbin/pf/pfs: parse.y

Log Message:
s/enougth/enough/


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/usr.sbin/pf/pfs/parse.y

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.