]> Nishi Git Mirror - mandshurica.git/commitdiff
fix typo
authornishi <nishi@f982e544-4a7d-3444-ad1a-fde59a2a69f1>
Mon, 15 Apr 2024 02:42:52 +0000 (02:42 +0000)
committernishi <nishi@f982e544-4a7d-3444-ad1a-fde59a2a69f1>
Mon, 15 Apr 2024 02:42:52 +0000 (02:42 +0000)
git-svn-id: file:///raid/svn-main/nishi-mandshurica/trunk@28 f982e544-4a7d-3444-ad1a-fde59a2a69f1

Mandshurica/config.c
Module/http.c
mkpasswd.pl

index 9811011e5f889fe7761064a7a198632b6f48cbde..b1d3a2389e28a7bf965951000e0c373a76783c2b 100644 (file)
@@ -199,6 +199,7 @@ int mandshurica_create_config(const char* path) {
                fprintf(f, "# Generated by Mandshurica " MANDSHURICA_VERSION "\n");
                fprintf(f, "ServerRoot %s\n", PREFIX);
                fprintf(f, "\n");
+               fprintf(f, "Set BasicDB %s/passwd.db\n", PREFIX);
                fprintf(f, "Set HTTPPort 1024\n");
                fprintf(f, "Set HTTPRoot %s\n", WEBROOT_PREFIX);
                fprintf(f, "\n");
index b241a14b46fc8ce55e6ac0d089dcf52d4e52ca19..c181056dceee17beedae95cd6d40523b7c0395ea 100644 (file)
@@ -90,7 +90,7 @@ int mod_init(struct mandshurica_config* _config) {
        }
 
        if(count == 1) {
-               log = mandshurica_strcat("HTTP Server available uthentication method is ", auth[0] == 0 ? "(none)" : auth);
+               log = mandshurica_strcat("HTTP Server available authentication method is ", auth[0] == 0 ? "(none)" : auth);
        } else {
                log = mandshurica_strcat("HTTP Server available authentication methods are ", auth[0] == 0 ? "(none)" : auth);
        }
index 12a3d54cdcf2f5fc4b22c810845a0db9eb34f2bd..07221281b9768b102051eaf278169a3a542e040b 100755 (executable)
@@ -1,33 +1,33 @@
 #!/usr/bin/env perl
 # $Id$
 
-use Digest::SHA qw(sha256 sha256_hex);
+use Digest::SHA qw(sha512 sha512_hex);
 require Term::ReadKey;
 
 if(@ARGV < 1) {
-       print "Pass me username\n";
+       print STDERR "Pass me username\n";
        exit 1
 }
 
-print "Password: ";
+print STDERR "Password: ";
 
 Term::ReadKey::ReadMode("noecho");
 
 my $password = Term::ReadKey::ReadLine(0);
 
-print "\n";
-print "Verify Password: ";
+print STDERR "\n";
+print STDERR "Verify Password: ";
 
 my $verify = Term::ReadKey::ReadLine(0);
 
-print "\n";
+print STDERR "\n";
 
 if ($password eq $verify) {
-       my $digest = sha256_hex($password);
+       my $digest = sha512_hex($password);
 
        print "$ARGV[0]:$digest\n";
 } else {
-       print "Unmatched\n";
+       print STDERR "Unmatched\n";
        exit 1
 }