chiark / gitweb /
parse socket files properly
[elogind.git] / util.c
diff --git a/util.c b/util.c
index 4bec220f7a1dbfad1c1868d8228d973bb77863df..f0455833985c909d394593a9fa435fdac2a3af1d 100644 (file)
--- a/util.c
+++ b/util.c
@@ -81,7 +81,7 @@ bool startswith(const char *s, const char *prefix) {
         return memcmp(s, prefix, pl) == 0;
 }
 
-int nointr_close(int fd) {
+int close_nointr(int fd) {
         assert(fd >= 0);
 
         for (;;) {