]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Remove unnecessary parens in `#if defined (SYMBOL)' expressions.
authorJim Meyering <jim@meyering.net>
Tue, 23 Aug 2005 15:09:13 +0000 (15:09 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 23 Aug 2005 15:09:13 +0000 (15:09 +0000)
src/su.c

index 5a4964b7b7470bdf4282a475245faa2476a6ab45..1abae322f26e4510fcbaa1549649ec61c0c22855 100644 (file)
--- a/src/su.c
+++ b/src/su.c
@@ -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.  */