openvpnctrl: Silence PID file error message.

This commit is contained in:
Michael Tremer
2013-09-02 21:52:35 +02:00
parent 52c5ec837f
commit 8e9a041324

View File

@@ -163,7 +163,6 @@ connection *getConnections() {
int readPidFile(const char *pidfile) {
FILE *fp = fopen(pidfile, "r");
if (fp == NULL) {
fprintf(stderr, "PID file not found: '%s'\n", pidfile);
exit(1);
}