X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Futilities%2Fpermissions.c;h=895d2e379eaea0ff95d91da3004d3e75345ca31f;hb=d2a96ae99e49b5264ca68ace469e20fa5e2e605b;hp=b0a8e27c4b71dbe14a79f0054ddf777bd93950be;hpb=3f2ed1c5fe6dc692ca00bb18a15e41617fa2d37d;p=pspp diff --git a/src/language/utilities/permissions.c b/src/language/utilities/permissions.c index b0a8e27c4b..895d2e379e 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" @@ -42,39 +40,39 @@ 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 ('/'); - - if ( ! lex_match_id ("PERMISSIONS")) + lex_match (lexer, '/'); + + 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 ) ) + 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 ) ) + 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; } @@ -104,10 +102,10 @@ change_permissions(const char *file_name, enum PER per) } - if ( -1 == stat(file_name, &buf) ) + if ( -1 == stat(file_name, &buf) ) { const int errnum = errno; - msg(ME,_("Cannot stat %s: %s"), file_name, strerror(errnum)); + msg (SE, _("Cannot stat %s: %s"), file_name, strerror(errnum)); return 0; } @@ -120,7 +118,7 @@ change_permissions(const char *file_name, enum PER per) { const int errnum = errno; - msg(ME,_("Cannot change mode of %s: %s"), file_name, strerror(errnum)); + msg (SE, _("Cannot change mode of %s: %s"), file_name, strerror(errnum)); return 0; }