X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Futilities%2Fpermissions.c;h=895d2e379eaea0ff95d91da3004d3e75345ca31f;hb=d2a96ae99e49b5264ca68ace469e20fa5e2e605b;hp=9dd911a190657e58a2c20c1a99d90401b96c25ec;hpb=23ec50a9127d4957d13aca80346eb5450792176a;p=pspp diff --git a/src/language/utilities/permissions.c b/src/language/utilities/permissions.c index 9dd911a190..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,34 +40,34 @@ 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 @@ -104,7 +102,7 @@ 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 (SE, _("Cannot stat %s: %s"), file_name, strerror(errnum));