Browse Source

update include to match header name conforming to CCAN standard

Stewart Smith 15 years ago
parent
commit
91f2ced8ab
2 changed files with 2 additions and 2 deletions
  1. 1 1
      ccan/daemon-with-notify/_info
  2. 1 1
      ccan/daemon-with-notify/daemon-with-notify.c

+ 1 - 1
ccan/daemon-with-notify/_info

@@ -16,7 +16,7 @@
  * failing exit code and init scripts can pick this up easily.
  *
  * Example:
- *	#include <ccan/daemon-with-notify/daemon.h>
+ *	#include <ccan/daemon-with-notify/daemon-with-notify.h>
  *	#include <ccan/str/str.h>
  *	#include <err.h>
  *	#include <unistd.h>

+ 1 - 1
ccan/daemon-with-notify/daemon-with-notify.c

@@ -38,7 +38,7 @@
 #include <unistd.h>
 #include <sys/select.h>
 
-#include <ccan/daemon-with-notify/daemon.h>
+#include <ccan/daemon-with-notify/daemon-with-notify.h>
 
 void sigusr1_handler(int sig);