blob: 5355bfad7adcfac2dfd33f4895f00f457aa48966 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
$NetBSD: patch-ac,v 1.2 2001/10/14 17:19:58 tron Exp $
--- ../spunk/password.cc.orig Thu Nov 7 18:06:48 1996
+++ ../spunk/password.cc Sun Oct 14 19:09:32 2001
@@ -525,14 +525,14 @@
-static void EntryEditor (PasswordEntry* E, int& Abort, int& Changed)
+void EntryEditor (PasswordEntry* E, int& Abort, int& Changed)
// Allow editing of one password entry
{
// ID's of the menue items
- const miUserID = 1;
- const miUserName = 2;
- const miPassword = 3;
- const miLevel = 4;
+ const int miUserID = 1;
+ const int miUserName = 2;
+ const int miPassword = 3;
+ const int miLevel = 4;
// Remember the crc of the entry
u32 OldCRC = GetCRC (E);
|