X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Futilities%2Fpermissions.c;h=b7b0c064a0d67e69a8cee02a6ec734ef45b65720;hb=6d8462bae6c13a723c63da24ed7db2549efd4cc1;hp=940b2d2bfb3655b269020022e065bdfd035c3e48;hpb=a19b858e0ac3c69e4a28c0ca6d8674427268a863;p=pspp diff --git a/src/language/utilities/permissions.c b/src/language/utilities/permissions.c index 940b2d2bfb..b7b0c064a0 100644 --- a/src/language/utilities/permissions.c +++ b/src/language/utilities/permissions.c @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 2004 Free Software Foundation, Inc. - Author: John Darrington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -29,7 +28,6 @@ #include #include #include -#include "stat-macros.h" #include #include "gettext.h" @@ -37,44 +35,44 @@ enum PER {PER_RO, PER_RW}; -int change_permissions(const char *filename, enum PER per); +int change_permissions(const char *file_name, enum PER per); /* Parses the PERMISSIONS command. */ int -cmd_permissions (void) +cmd_permissions (struct lexer *lexer, struct dataset *ds UNUSED) { char *fn = 0; - lex_match ('/'); + lex_match (lexer, '/'); - if (lex_match_id ("FILE")) - lex_match ('='); + if (lex_match_id (lexer, "FILE")) + lex_match (lexer, '='); - fn = strdup(ds_c_str(&tokstr)); - lex_force_match(T_STRING); + fn = ds_xstrdup (lex_tokstr (lexer)); + lex_force_match (lexer, T_STRING); - lex_match ('/'); + lex_match (lexer, '/'); - if ( ! lex_match_id ("PERMISSIONS")) + if ( ! lex_match_id (lexer, "PERMISSIONS")) goto error; - lex_match('='); + lex_match (lexer, '='); - if ( lex_match_id("READONLY")) + if ( lex_match_id (lexer, "READONLY")) { if ( ! change_permissions(fn, PER_RO ) ) goto error; } - else if ( lex_match_id("WRITEABLE")) + else if ( lex_match_id (lexer, "WRITEABLE")) { if ( ! change_permissions(fn, PER_RW ) ) goto error; } else { - msg(ME, _("Expecting %s or %s."), "WRITEABLE", "READONLY"); + msg (SE, _("Expecting %s or %s."), "WRITEABLE", "READONLY"); goto error; } @@ -92,7 +90,7 @@ cmd_permissions (void) int -change_permissions(const char *filename, enum PER per) +change_permissions(const char *file_name, enum PER per) { struct stat buf; mode_t mode; @@ -104,10 +102,10 @@ change_permissions(const char *filename, enum PER per) } - if ( -1 == stat(filename, &buf) ) + if ( -1 == stat(file_name, &buf) ) { const int errnum = errno; - msg(ME,_("Cannot stat %s: %s"), filename, strerror(errnum)); + msg (SE, _("Cannot stat %s: %s"), file_name, strerror(errnum)); return 0; } @@ -116,11 +114,11 @@ change_permissions(const char *filename, enum PER per) else mode = buf.st_mode & ~( S_IWOTH | S_IWUSR | S_IWGRP ); - if ( -1 == chmod(filename, mode)) + if ( -1 == chmod(file_name, mode)) { const int errnum = errno; - msg(ME,_("Cannot change mode of %s: %s"), filename, strerror(errnum)); + msg (SE, _("Cannot change mode of %s: %s"), file_name, strerror(errnum)); return 0; }