Merge commit '00f1a4f432b3d8aad1aa270e91c44c57f03ef407'
[unleashed.git] / usr / src / cmd / yppasswd / yppasswd.c
blobb72ea36f9f7310ea92555f0b1fc731fb60d02f78
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
20 * CDDL HEADER END
23 * Copyright (c) 2001 by Sun Microsystems, Inc.
24 * All rights reserved.
27 #pragma ident "%Z%%M% %I% %E% SMI"
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32 #include <locale.h>
34 static void
35 usage(void)
37 (void) fprintf(stderr, "%s\n\n", gettext("usage: yppasswd [username]"));
38 (void) fprintf(stderr, "%s\n", gettext("NOTE:"));
39 (void) fprintf(stderr, "%s\n", gettext("yppasswd and nispasswd have "
40 "been replaced by the new passwd command."));
41 (void) fprintf(stderr, "%s\n",
42 gettext("See passwd(1) for more information."));
45 int
46 main(int argc, char *argv[])
48 char *new_argv[5];
50 (void) setlocale(LC_ALL, "");
52 #if !defined(TEXT_DOMAIN) /* Should be defined by cc -D */
53 #define TEXT_DOMAIN "SYS_TEST" /* Use this only if it weren't */
54 #endif
55 (void) textdomain(TEXT_DOMAIN);
57 if (argc > 2) {
58 usage();
59 exit(1);
61 new_argv[0] = "yppasswd";
62 new_argv[1] = "-r";
63 new_argv[2] = "nis";
64 if (argc == 1) {
65 new_argv[3] = NULL;
66 } else {
67 new_argv[3] = argv[1];
68 new_argv[4] = NULL;
71 (void) execvp("/bin/passwd", new_argv);
72 perror("/bin/passwd");
73 return (1);