Add missing getopt.h include into maxpasswd.c

The file did not explicitly include the header and thus depended on it
being included by another header.
This commit is contained in:
Markus Mäkelä 2017-09-12 09:49:26 +03:00
parent 45e0e8bb59
commit 616a1e0736

View File

@ -28,6 +28,7 @@
#include <stdio.h>
#include <errno.h>
#include <sys/stat.h>
#include <getopt.h>
#include <maxscale/paths.h>
#include <maxscale/log_manager.h>