Differences From Artifact [5e42a17139]:
- File src/user.c — part of check-in [5741754ed2] at 2013-04-27 01:12:11 on branch trunk — Added $LOGNAME to the list of environment variables checkes for the user name, per report from Will Parsons. (user: stephan size: 13665) [more...]
To Artifact [84e080180f]:
- File src/user.c — part of check-in [273ec22f25] at 2013-05-17 12:04:28 on branch trunk — Remove excess verbage from the output of "fossil clean" unless the --verbose or -v command-line option is used. Issue an error if an unrecognized command-line argument is seen, to prevent mistakes like using --dryrun instead of --dry-run. (user: drh size: 13750) [more...]
| ︙ | |||
139 140 141 142 143 144 145 146 147 148 149 150 151 152 | 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | + + |
char zLine[1000];
blob_zero(pIn);
fossil_force_newline();
fossil_print("%s", zPrompt);
fflush(stdout);
z = fgets(zLine, sizeof(zLine), stdin);
if( z ){
int n = (int)strlen(z);
if( n>0 && z[n-1]=='\n' ) fossil_new_line_started();
strip_string(pIn, z);
}
}
/*
** COMMAND: user*
|
| ︙ |