remove some unused defines; ok djm@
authorjsg <jsg@openbsd.org>
Sun, 22 Sep 2024 12:56:21 +0000 (12:56 +0000)
committerjsg <jsg@openbsd.org>
Sun, 22 Sep 2024 12:56:21 +0000 (12:56 +0000)
usr.bin/ssh/authfile.c
usr.bin/ssh/monitor.c
usr.bin/ssh/progressmeter.c
usr.bin/ssh/sshkey.c

index eb0bded..84404dd 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: authfile.c,v 1.144 2023/03/14 07:26:25 dtucker Exp $ */
+/* $OpenBSD: authfile.c,v 1.145 2024/09/22 12:56:21 jsg Exp $ */
 /*
  * Copyright (c) 2000, 2013 Markus Friedl.  All rights reserved.
  *
@@ -47,8 +47,6 @@
 #include "ssherr.h"
 #include "krl.h"
 
-#define MAX_KEY_FILE_SIZE      (1024 * 1024)
-
 /* Save a key blob to a file */
 static int
 sshkey_save_private_blob(struct sshbuf *keybuf, const char *filename)
index 6d34e72..61a2310 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: monitor.c,v 1.244 2024/09/15 01:09:40 djm Exp $ */
+/* $OpenBSD: monitor.c,v 1.245 2024/09/22 12:56:21 jsg Exp $ */
 /*
  * Copyright 2002 Niels Provos <provos@citi.umich.edu>
  * Copyright 2002 Markus Friedl <markus@openbsd.org>
@@ -1527,8 +1527,6 @@ monitor_openfds(struct monitor *mon, int do_logfds)
                mon->m_log_recvfd = mon->m_log_sendfd = -1;
 }
 
-#define MM_MEMSIZE     65536
-
 struct monitor *
 monitor_init(void)
 {
index 5a301b4..372b309 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: progressmeter.c,v 1.53 2023/04/12 14:22:04 jsg Exp $ */
+/* $OpenBSD: progressmeter.c,v 1.54 2024/09/22 12:56:21 jsg Exp $ */
 /*
  * Copyright (c) 2003 Nils Nordman.  All rights reserved.
  *
@@ -44,7 +44,6 @@
 
 #define DEFAULT_WINSIZE 80
 #define MAX_WINSIZE 512
-#define PADDING 1              /* padding between the progress indicators */
 #define UPDATE_INTERVAL 1      /* update the progress meter every second */
 #define STALL_TIME 5           /* we're stalled after this many seconds */
 
index 1ebcd1c..07ee924 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshkey.c,v 1.146 2024/09/04 05:33:34 djm Exp $ */
+/* $OpenBSD: sshkey.c,v 1.147 2024/09/22 12:56:21 jsg Exp $ */
 /*
  * Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.
  * Copyright (c) 2008 Alexander von Gernler.  All rights reserved.
@@ -72,9 +72,6 @@
 #define DEFAULT_CIPHERNAME     "aes256-ctr"
 #define        DEFAULT_ROUNDS          24
 
-/* Version identification string for SSH v1 identity files. */
-#define LEGACY_BEGIN           "SSH PRIVATE KEY FILE FORMAT 1.1\n"
-
 /*
  * Constants relating to "shielding" support; protection of keys expected
  * to remain in memory for long durations