chkpw and chkpwd are now working
[citadel.git] / citadel / utils / chkpwd.c
index 96fed66203bfa7fff7be592306d0dbd526c3cb0b..2a9c2395f45ce9ba2dd23d4430efb7ae7eee00b9 100644 (file)
@@ -1,8 +1,6 @@
-//
 // a setuid helper program for machines which use shadow passwords
-// by Nathan Bryant, March 1999
 //
-// Copyright (c) 1987-2012 by the citadel.org team
+// Copyright (c) 1987-2022 by Nathan Bryant and the citadel.org team
 //
 // This program is open source software.  Use, duplication, or disclosure
 // is subject to the terms of the GNU General Public License, version 3.
 #include <syslog.h>
 #include <unistd.h>
 #include <sys/types.h>
-
 #include <libcitadel.h>
-
 #include "auth.h"
-#include "config.h"
-#include "citadel_dirs.h"
-#include "citadel.h"
+#include "../server/config.h"
+#include "../server/citadel_dirs.h"
+#include "../server/citadel.h"
 
-int main(void)
-{
+
+int main(void) {
        uid_t uid;
        char buf[SIZ];
 
        while (1) {
                buf[0] = '\0';
-               read(0, &uid, sizeof(uid_t));   /* uid */
-               read(0, buf, 256);      /* password */
+               read(0, &uid, sizeof(uid_t));   // uid
+               read(0, buf, 256);              // password
 
-               if (buf[0] == '\0') 
+               if (buf[0] == '\0') {
                        return (0);
+               }
                if (validate_password(uid, buf)) {
                        write(1, "PASS", 4);
                }