1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Consistently use geteuid() not getuid(); there were a few places deviating

from our long-established standard.
This commit is contained in:
Tom Lane
2005-01-08 22:51:15 +00:00
parent b5adf46cbd
commit 8afe005f42
6 changed files with 14 additions and 16 deletions

View File

@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.99 2005/01/01 05:43:08 momjian Exp $
* $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.100 2005/01/08 22:51:13 tgl Exp $
*/
#include "postgres_fe.h"
#include "common.h"
@ -19,7 +19,7 @@
#include <pwd.h> /* for getpwuid() */
#endif
#include <sys/types.h> /* (ditto) */
#include <unistd.h> /* for getuid() */
#include <unistd.h> /* for geteuid() */
#else
#include <win32.h>
#endif