1
1

Trivial format change: use the same length of lines and \n offsets as

opal_show_help().

Refs trac:4536

This commit was SVN r31437.

The following Trac tickets were found above:
  Ticket 4536 --> https://svn.open-mpi.org/trac/ompi/ticket/4536
Этот коммит содержится в:
Jeff Squyres 2014-04-18 23:14:45 +00:00
родитель 1fab9bb37f
Коммит 482b465c05

Просмотреть файл

@ -10,7 +10,7 @@
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2006-2013 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2006-2014 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2007-2009 Sun Microsystems, Inc. All rights reserved.
* Copyright (c) 2007-2013 Los Alamos National Security, LLC. All rights
* reserved.
@ -649,7 +649,7 @@ int orterun(int argc, char *argv[])
*/
if (0 == geteuid() && !orterun_globals.run_as_root) {
/* show_help is not yet available, so print an error manually */
fprintf(stderr, "\n--------------------------------------------------------------\n");
fprintf(stderr, "--------------------------------------------------------------------------\n");
fprintf(stderr, "%s has detected an attempt to run as root. This is *strongly*\n", orte_basename);
fprintf(stderr, "discouraged as any mistake (e.g., in defining TMPDIR) or bug can\n");
fprintf(stderr, "result in catastrophic damage to the OS file system, leaving\n");
@ -657,7 +657,7 @@ int orterun(int argc, char *argv[])
fprintf(stderr, "You can override this protection by adding the --allow-run-as-root\n");
fprintf(stderr, "option to your cmd line. However, we reiterate our strong advice\n");
fprintf(stderr, "against doing so - please do so at your own risk.\n");
fprintf(stderr, "\n--------------------------------------------------------------\n");
fprintf(stderr, "--------------------------------------------------------------------------\n");
exit(1);
}