From 935e4d4aef7d9dee02167ac7162a2cf15a684201 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 30 Aug 1998 03:12:22 +0000 Subject: [PATCH] (longopts): Use corresponding short-option character in place of `1', and `NULL' in place of pointer in initialization. --- login-utils/su.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/login-utils/su.c b/login-utils/su.c index f0e0dd206e..6f9c381af0 100644 --- a/login-utils/su.c +++ b/login-utils/su.c @@ -1,5 +1,5 @@ /* su for GNU. Run a shell with substitute user and group IDs. - Copyright (C) 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc. + Copyright (C) 92, 93, 94, 95, 96, 97, 1998 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 @@ -170,9 +170,9 @@ static int change_environment; static struct option const longopts[] = { {"command", required_argument, 0, 'c'}, - {"fast", no_argument, &fast_startup, 1}, + {"fast", no_argument, NULL, 'f'}, {"help", no_argument, &show_help, 1}, - {"login", no_argument, &simulate_login, 1}, + {"login", no_argument, NULL, 'l'}, {"preserve-environment", no_argument, &change_environment, 0}, {"shell", required_argument, 0, 's'}, {"version", no_argument, &show_version, 1}, -- 2.47.3