From 274f3ddee2431e27c5c48fcaf1aaf2ef3e40b266 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Wed, 7 Nov 2012 19:13:20 +0100 Subject: check_procs: fix typo Fix a typo in previous commit where st_ was missing in the mock struct_stat_t, causing check_procs.c to not compile without sys/stat.h. diff --git a/plugins/check_procs.c b/plugins/check_procs.c index 467a1b4..6a30ce0 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c @@ -48,7 +48,7 @@ const char *email = "nagiosplug-devel@lists.sourceforge.net"; typedef struct stat struct_stat_t; #else /* won't be used anyway */ -typedef struct { dev_t dev; ino_t ino; } struct_stat_t; +typedef struct { dev_t st_dev; ino_t st_ino; } struct_stat_t; #endif int process_arguments (int, char **); -- cgit v0.10-9-g596f