Code

starttls support for check_smtp #1041576
[nagiosplug.git] / plugins / popen.c
index d527c222906d63c23a912c9fee34b14d17b2e37d..04eb3881b328fa0e0938a5b93295f661231119db 100644 (file)
@@ -112,8 +112,9 @@ spopen (const char *cmdstring)
        /* there cannot be more args than characters */
        argc = strlen (cmdstring) + 1;  /* add 1 for NULL termination */
        argv = malloc (sizeof(char*)*argc);
+       
        if (argv == NULL) {
-               printf ("Could not malloc argv array in popen()\n");
+               printf (_("Could not malloc argv array in popen()\n"));
                return NULL;
        }
 
@@ -123,7 +124,7 @@ spopen (const char *cmdstring)
                str += strspn (str, " \t\r\n"); /* trim any leading whitespace */
 
                if (i >= argc - 2) {
-                       printf ("You've got a big problem buddy! You need more args!!!\n");
+                       printf (_("CRITICAL - You need more args!!!\n"));
                        return (NULL);
                }
 
@@ -238,17 +239,19 @@ static int openmax = 0;
 #define        OPEN_MAX_GUESS  256                     /* if OPEN_MAX is indeterminate */
                                /* no guarantee this is adequate */
 
+
 void
 popen_timeout_alarm_handler (int signo)
 {
        if (signo == SIGALRM) {
                kill (childpid[fileno (child_process)], SIGKILL);
-               printf ("CRITICAL - Plugin timed out after %d seconds\n",
+               printf (_("CRITICAL - Plugin timed out after %d seconds\n"),
                                                timeout_interval);
                exit (STATE_CRITICAL);
        }
 }
 
+
 int
 open_max (void)
 {
@@ -258,14 +261,13 @@ open_max (void)
                        if (errno == 0)
                                openmax = OPEN_MAX_GUESS;       /* it's indeterminate */
                        else
-                               err_sys ("sysconf error for _SC_OPEN_MAX");
+                               err_sys (_("sysconf error for _SC_OPEN_MAX"));
                }
        }
        return (openmax);
 }
 
 
-
 /* Fatal error related to a system call.
  * Print a message and die. */
 
@@ -308,4 +310,3 @@ rtrim (char *str, const char *tok)
        }
        return str;
 }
-