mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-23 07:06:30 +00:00
- Fix Makefile to include check_dir.c - Add function mkdir_p that was taken from initdb.c - Replace some strcpy for assignment to const char * to keep compiler quite - Add STANDBY_NORMAL to initialize action - fix typos and add headers needed to compile
10 lines
165 B
C
10 lines
165 B
C
/*
|
|
* check_dir.h
|
|
* Copyright (c) 2ndQuadrant, 2010
|
|
*
|
|
*/
|
|
|
|
int check_dir(char *dir);
|
|
bool create_directory(char *dir);
|
|
bool set_directory_permissions(char *dir);
|