From: Arshad Hussain Date: Sat, 3 Aug 2019 07:18:10 +0000 (+0530) Subject: LU-4423 utils: Remove variables qualified by 'extern' under mount_utils.c X-Git-Tag: 2.12.57~10 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=7d0db895b524410ddac146f80d764be4c0ad2f46 LU-4423 utils: Remove variables qualified by 'extern' under mount_utils.c Removal of corresponding 'extern' declaration is already done under commit b43c7cc6cba514687ebcbeaa1a7dcc8cf7ffa694. This patch is an extension to the above commit and covers file mount_utils.c Test-Parameters: trivial Signed-off-by: Arshad Hussain Change-Id: I2362be0f7ec32fba9d9e680a3d7c416e5ec40083 Reviewed-on: https://review.whamcloud.com/35688 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger Reviewed-by: James Simmons --- diff --git a/lustre/utils/mount_utils.c b/lustre/utils/mount_utils.c index be5d46b..5f3c296 100644 --- a/lustre/utils/mount_utils.c +++ b/lustre/utils/mount_utils.c @@ -62,9 +62,6 @@ #include "mount_utils.h" -extern char *progname; -extern int verbose; - #define vprint(fmt, arg...) if (verbose > 0) printf(fmt, ##arg) #define verrprint(fmt, arg...) if (verbose >= 0) fprintf(stderr, fmt, ##arg)