]> code.citadel.org Git - citadel.git/blobdiff - citadel/chkpwd.c
* Variable names, comments, documentation, etc... removed the acronym 'BBS'
[citadel.git] / citadel / chkpwd.c
index b96ac7392a54845d964fbd9572ffdde486864d24..ece82c2a1129e90d53447f5f11bf31f26a13b3d0 100644 (file)
@@ -23,12 +23,12 @@ int main(void)
 {
   uid_t uid;
   struct passwd *pw;
-  char buf[256];
+  char buf[SIZ];
 
   get_config();
   uid = getuid();
 
-  if (uid != BBSUID && uid)
+  if (uid != CTDLUID && uid)
     {
       pw = getpwuid(uid);
       openlog("chkpwd", LOG_CONS, LOG_AUTH);