diff options
| author | Jim Meyering <jim@meyering.net> | 2005-08-23 15:09:13 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 2005-08-23 15:09:13 +0000 |
| commit | be16d0eac0baf2fa8f343bbb5a050cfeec3aba27 (patch) | |
| tree | 2630a079eca4b93173a02885f3e62cfd95b675ff /src/su.c | |
| parent | Remove unnecessary parens in `#if defined (SYMBOL)' expressions. (diff) | |
| download | coreutils-be16d0eac0baf2fa8f343bbb5a050cfeec3aba27.tar.gz coreutils-be16d0eac0baf2fa8f343bbb5a050cfeec3aba27.zip | |
Remove unnecessary parens in `#if defined (SYMBOL)' expressions.
Diffstat (limited to 'src/su.c')
| -rw-r--r-- | src/su.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* su for GNU. Run a shell with substitute user and group IDs. - Copyright (C) 1992-2004 Free Software Foundation, Inc. + Copyright (C) 1992-2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -191,7 +191,7 @@ xsetenv (char const *name, char const *val) xalloc_die (); } -#if defined (SYSLOG_SUCCESS) || defined (SYSLOG_FAILURE) +#if defined SYSLOG_SUCCESS || defined SYSLOG_FAILURE /* Log the fact that someone has run su to the user given by PW; if SUCCESSFUL is true, they gave the correct password, etc. */ |
