1 /* config.c - passwd backend configuration file routine */
16 passwd_back_db_config(
24 /* alternate passwd file */
25 if ( strcasecmp( argv[0], "file" ) == 0 ) {
29 "%s: line %d: missing filename in \"file <filename>\" line\n",
33 be->be_private = ch_strdup( argv[1] );
34 #else /* HAVE_SETPWFILE */
36 "%s: line %d: ignoring \"file\" option (not supported on this platform)\n",
38 #endif /* HAVE_SETPWFILE */
43 "%s: line %d: unknown directive \"%s\" in passwd database definition (ignored)\n",
44 fname, lineno, argv[0] );