]> granicus.if.org Git - procps-ng/commitdiff
top: idiot! sometimes nls was misspelled nsl (but not anymore)
authorJim Warner <james.warner@comcast.net>
Sat, 5 Nov 2011 23:34:50 +0000 (18:34 -0500)
committerCraig Small <csmall@enc.com.au>
Thu, 22 Dec 2011 12:48:05 +0000 (23:48 +1100)
top/top.c
top/top_nls.c
top/top_nls.h

index a64ff8df702e34c5538c9b2eeb8c44f66bbbebe3..e5d98decb40e0a465b87c9e91c5bc448dac4183e 100644 (file)
--- a/top/top.c
+++ b/top/top.c
@@ -2073,7 +2073,7 @@ static void before (char *me) {
    if (Myname) ++Myname; else Myname = me;
 
    // accommodate nls/gettext potential translations
-   initialize_nsl();
+   initialize_nls();
 
    // establish cpu particulars
 #ifdef PRETEND4CPUS
index ffd64de56fa540b7d754fba3961d21c61696f04c..32bb822cbb3e440ebbcab290eb44a4780ee27f91 100644 (file)
@@ -440,7 +440,7 @@ static void build_norm_nlstab (void) {
         /*
          * This routine builds the nls table containing specially
          * formatted strings designed to fit within an 80x24 terminal. */
-static void build_uniq_nsltab (void) {
+static void build_uniq_nlstab (void) {
    char buf[BIGBUFSIZ];
 
 /* Translation Notes ------------------------------------------------
@@ -650,7 +650,7 @@ static void build_uniq_nsltab (void) {
          * user will also have to export an empty LC_ALL= to actually
          * enable any translations.
          */
-void initialize_nsl (void) {
+void initialize_nls (void) {
 #ifdef VALIDATE_NLS
    static const char *nls_err ="\t%s_nlstab[%d] == NULL\n";
    int i;
@@ -674,7 +674,7 @@ void initialize_nsl (void) {
          exit(1);
       }
    memset(Uniq_nlstab, 0, sizeof(Uniq_nlstab));
-   build_uniq_nsltab();
+   build_uniq_nlstab();
    for (i = 0; i < uniq_MAX; i++)
       if (!Uniq_nlstab[i]) {
          fprintf(stderr, nls_err, "Uniq", i);
@@ -687,6 +687,6 @@ void initialize_nsl (void) {
 
    build_desc_nlstab();
    build_norm_nlstab();
-   build_uniq_nsltab();
+   build_uniq_nlstab();
 #endif
 }
index 1b029324f570c1ed152bf81623d254ae06d8d90c..6e0b0c2fc4d6a0dad6c5199690580d7c7ea61ea0 100644 (file)
@@ -75,7 +75,7 @@ enum uniq_nls {
       uniq_MAX
 };
 
-void initialize_nsl (void);
+void initialize_nls (void);
 
 #endif /* _Itop_nls */
 \f