Author: uqs
Date: Thu Jan  5 21:36:36 2012
New Revision: 229654
URL: http://svn.freebsd.org/changeset/base/229654

Log:
  Further fix a typo and spelling classic correctly in function names,
  too.
  
  Submitted by: Ben Kaduk <minimar...@gmail.com>

Modified:
  head/usr.sbin/newsyslog/newsyslog.c

Modified: head/usr.sbin/newsyslog/newsyslog.c
==============================================================================
--- head/usr.sbin/newsyslog/newsyslog.c Thu Jan  5 21:36:28 2012        
(r229653)
+++ head/usr.sbin/newsyslog/newsyslog.c Thu Jan  5 21:36:36 2012        
(r229654)
@@ -1600,7 +1600,7 @@ delete_oldest_timelog(const struct conf_
  * Generate a log filename, when using classic filenames.
  */
 static void
-gen_clasiclog_fname(char *fname, size_t fname_sz, const char *archive_dir,
+gen_classiclog_fname(char *fname, size_t fname_sz, const char *archive_dir,
     const char *namepart, int numlogs_c)
 {
 
@@ -1612,15 +1612,15 @@ gen_clasiclog_fname(char *fname, size_t 
 }
 
 /*
- * Delete a rotated logfiles, when using classic filenames.
+ * Delete a rotated logfile, when using classic filenames.
  */
 static void
-delete_clasiclog(const char *archive_dir, const char *namepart, int numlog_c)
+delete_classiclog(const char *archive_dir, const char *namepart, int numlog_c)
 {
        char file1[MAXPATHLEN], zfile1[MAXPATHLEN];
        int c;
 
-       gen_clasiclog_fname(file1, sizeof(file1), archive_dir, namepart,
+       gen_classiclog_fname(file1, sizeof(file1), archive_dir, namepart,
            numlog_c);
 
        for (c = 0; c < COMPRESS_TYPES; c++) {
@@ -1744,10 +1744,10 @@ do_rotate(const struct conf_entry *ent)
                 * kept ent->numlogs + 1 files.  This code can go away
                 * at some point in the future.
                 */
-               delete_clasiclog(dirpart, namepart, ent->numlogs);
+               delete_classiclog(dirpart, namepart, ent->numlogs);
 
                if (ent->numlogs > 0)
-                       delete_clasiclog(dirpart, namepart, ent->numlogs - 1);
+                       delete_classiclog(dirpart, namepart, ent->numlogs - 1);
 
        }
 
@@ -1768,7 +1768,7 @@ do_rotate(const struct conf_entry *ent)
                /* Don't run the code to move down logs */
                numlogs_c = -1;
        } else {
-               gen_clasiclog_fname(file1, sizeof(file1), dirpart, namepart,
+               gen_classiclog_fname(file1, sizeof(file1), dirpart, namepart,
                    ent->numlogs - 1);
                numlogs_c = ent->numlogs - 2;           /* copy for countdown */
        }
@@ -1777,7 +1777,7 @@ do_rotate(const struct conf_entry *ent)
        for (; numlogs_c >= 0; numlogs_c--) {
                (void) strlcpy(file2, file1, sizeof(file2));
 
-               gen_clasiclog_fname(file1, sizeof(file1), dirpart, namepart,
+               gen_classiclog_fname(file1, sizeof(file1), dirpart, namepart,
                    numlogs_c);
 
                logfile_suffix = get_logfile_suffix(file1);
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to