diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2024-06-02 18:47:18 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2024-06-02 18:47:18 +0000 |
commit | 29722549d107116ec99937b1ab7a18f181dbd169 (patch) | |
tree | 952082d7fdb9dc4dbac9718ebd67bede326931d5 | |
parent | 94e2eadc1f275b2b6ea10fe1e1df48c0dea0efbd (diff) |
ugh, another typo; spotted by naddy
-rw-r--r-- | usr.sbin/crunchgen/crunchgen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/crunchgen/crunchgen.c b/usr.sbin/crunchgen/crunchgen.c index e0bfd53d9f9..4bc496197c3 100644 --- a/usr.sbin/crunchgen/crunchgen.c +++ b/usr.sbin/crunchgen/crunchgen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crunchgen.c,v 1.29 2024/06/02 18:01:37 deraadt Exp $ */ +/* $OpenBSD: crunchgen.c,v 1.30 2024/06/02 18:47:17 deraadt Exp $ */ /* * Copyright (c) 1994 University of Maryland @@ -897,7 +897,7 @@ top_makefile_rules(FILE * outmk) fprintf(outmk, "CFLAGS+=-fno-unwind-tables\n"); fprintf(outmk, ".if ${MACHINE} == \"amd64\"\n"); fprintf(outmk, "CFLAGS+=-fcf-protection=none\n"); - fprintf(outmk, "CFLAGS+=-no-fret-clean\n"); + fprintf(outmk, "CFLAGS+=-fno-ret-clean\n"); fprintf(outmk, ".endif\n"); fprintf(outmk, ".if ${MACHINE} == \"arm64\"\n"); fprintf(outmk, "CFLAGS+=-mbranch-protection=none\n"); |