24 lines
724 B
Text
24 lines
724 B
Text
$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);
|